summary refs log blame commit diff stats
path: root/plugins/fishlim/makefile.mak
blob: 4d0be66bea24fbc1c43b57eff16706d948eb21c4 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11










                                
                 

















                                                                                            
include "..\..\src\makeinc.mak"

TARGET = xcfishlim.dll

CFLAGS = $(CFLAGS)

FISHLIM_OBJECTS = \
fish.obj \
irc.obj \
keystore.obj \
misc.obj \
plugin_xchat.obj

all: $(FISHLIM_OBJECTS) fishlim.def
	link $(LDFLAGS) $(LIBS) /dll /out:xcfishlim.dll /def:fishlim.def $(FISHLIM_OBJECTS)

fishlim.def:
	echo EXPORTS > fishlim.def
	echo xchat_plugin_init >> fishlim.def
	echo xchat_plugin_deinit >> fishlim.def
	echo xchat_plugin_get_info >> fishlim.def

.c.obj:
	$(CC) $(CFLAGS) $(GLIB) /I.. /c $<

clean:
	del *.obj
	del *.dll
	del *.exp
	del *.lib