mirror of
https://github.com/moparisthebest/hexchat
synced 2024-11-04 08:25:03 -05:00
19 lines
394 B
Makefile
19 lines
394 B
Makefile
include "..\..\src\makeinc.mak"
|
|
|
|
all: nonbmp.obj nonbmp.def
|
|
link $(LDFLAGS) $(LIBS) /dll /out:xcnonbmp.dll /def:nonbmp.def nonbmp.obj
|
|
|
|
nonbmp.def:
|
|
echo EXPORTS > nonbmp.def
|
|
echo xchat_plugin_init >> nonbmp.def
|
|
echo xchat_plugin_deinit >> nonbmp.def
|
|
|
|
nonbmp.obj: nonbmp.c makefile.mak
|
|
cl $(CFLAGS) $(GLIB) /I.. nonbmp.c
|
|
|
|
clean:
|
|
del *.obj
|
|
del *.dll
|
|
del *.exp
|
|
del *.lib
|