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