diff options
author | Berke Viktor <bviktor@hexchat.org> | 2012-07-13 17:55:31 +0200 |
---|---|---|
committer | Berke Viktor <bviktor@hexchat.org> | 2012-07-13 17:55:31 +0200 |
commit | ea2c58c2344f3ed9c4fa01f05119c5a3715ffdaa (patch) | |
tree | 3b289f1b3b2c6682fefb4926ee8d927f64c55760 /plugins | |
parent | 52525478ab1bc9cd68d4ebe70bbce667aa58314d (diff) |
Rename files, delete old windows makefiles
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/checksum/makefile.mak | 18 | ||||
-rw-r--r-- | plugins/dns/makefile.mak | 22 | ||||
-rw-r--r-- | plugins/doat/makefile.mak | 18 | ||||
-rw-r--r-- | plugins/exec/makefile.mak | 18 | ||||
-rw-r--r-- | plugins/fishlim/makefile.mak | 30 | ||||
-rw-r--r-- | plugins/lua/makefile.mak | 20 | ||||
-rw-r--r-- | plugins/makefile.mak | 71 | ||||
-rw-r--r-- | plugins/mpcinfo/makefile.mak | 18 | ||||
-rw-r--r-- | plugins/perl/hexchat-perl.html (renamed from plugins/perl/xchat2-perl.html) | 0 | ||||
-rw-r--r-- | plugins/perl/hexchat-perldocs.html (renamed from plugins/perl/xchat2-perldocs.html) | 0 | ||||
-rw-r--r-- | plugins/perl/makefile-512.mak | 40 | ||||
-rw-r--r-- | plugins/perl/makefile-514.mak | 42 | ||||
-rw-r--r-- | plugins/python/makefile.mak | 25 | ||||
-rw-r--r-- | plugins/tcl/makefile.mak | 22 | ||||
-rw-r--r-- | plugins/upd/makefile.mak | 18 | ||||
-rw-r--r-- | plugins/winamp/makefile.mak | 18 | ||||
-rw-r--r-- | plugins/winsys/makefile.mak | 18 | ||||
-rw-r--r-- | plugins/wmpa/makefile.mak | 53 | ||||
-rw-r--r-- | plugins/xsasl/makefile.mak | 18 | ||||
-rw-r--r-- | plugins/xtray/icons/hexchat.ico (renamed from plugins/xtray/icons/xchat.ico) | bin | 25670 -> 25670 bytes | |||
-rw-r--r-- | plugins/xtray/makefile.mak | 37 |
21 files changed, 0 insertions, 506 deletions
diff --git a/plugins/checksum/makefile.mak b/plugins/checksum/makefile.mak deleted file mode 100644 index ec8e0455..00000000 --- a/plugins/checksum/makefile.mak +++ /dev/null @@ -1,18 +0,0 @@ -include "..\..\src\makeinc.mak" - -all: checksum.obj checksum.def - link $(LDFLAGS) $(LIBS) /dll /out:xcchecksum.dll /def:checksum.def checksum.obj - -checksum.def: - echo EXPORTS > checksum.def - echo xchat_plugin_init >> checksum.def - echo xchat_plugin_deinit >> checksum.def - -checksum.obj: checksum.c makefile.mak - cl $(CFLAGS) /I.. checksum.c - -clean: - del *.obj - del *.dll - del *.exp - del *.lib diff --git a/plugins/dns/makefile.mak b/plugins/dns/makefile.mak deleted file mode 100644 index 384e6be1..00000000 --- a/plugins/dns/makefile.mak +++ /dev/null @@ -1,22 +0,0 @@ -include "..\..\src\makeinc.mak" - -DNS_OBJECTS = \ -dns.obj \ -thread.obj - -all: $(DNS_OBJECTS) dns.def - link $(LDFLAGS) $(LIBS) /dll /out:xcdns.dll /def:dns.def $(DNS_OBJECTS) - -dns.def: - echo EXPORTS > dns.def - echo xchat_plugin_init >> dns.def - echo xchat_plugin_deinit >> dns.def - -.c.obj: - $(CC) $(CFLAGS) $(GLIB) /I.. /c $< - -clean: - del *.obj - del *.dll - del *.exp - del *.lib diff --git a/plugins/doat/makefile.mak b/plugins/doat/makefile.mak deleted file mode 100644 index 960cae27..00000000 --- a/plugins/doat/makefile.mak +++ /dev/null @@ -1,18 +0,0 @@ -include "..\..\src\makeinc.mak" - -all: doat.obj doat.def - link $(LDFLAGS) $(LIBS) /dll /out:xcdoat.dll /def:doat.def doat.obj - -doat.def: - echo EXPORTS > doat.def - echo xchat_plugin_init >> doat.def - echo xchat_plugin_deinit >> doat.def - -doat.obj: doat.c makefile.mak - cl $(CFLAGS) $(GLIB) /I.. doat.c - -clean: - del *.obj - del *.dll - del *.exp - del *.lib diff --git a/plugins/exec/makefile.mak b/plugins/exec/makefile.mak deleted file mode 100644 index d2153faf..00000000 --- a/plugins/exec/makefile.mak +++ /dev/null @@ -1,18 +0,0 @@ -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 diff --git a/plugins/fishlim/makefile.mak b/plugins/fishlim/makefile.mak deleted file mode 100644 index 4d0be66b..00000000 --- a/plugins/fishlim/makefile.mak +++ /dev/null @@ -1,30 +0,0 @@ -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 diff --git a/plugins/lua/makefile.mak b/plugins/lua/makefile.mak deleted file mode 100644 index 97a7e10b..00000000 --- a/plugins/lua/makefile.mak +++ /dev/null @@ -1,20 +0,0 @@ -include "..\..\src\makeinc.mak" - -DIRENTLIB = ..\..\src\common\dirent-win32.lib - -all: lua.obj lua.def - link $(LDFLAGS) $(LIBS) /dll /out:xclua.dll $(LUALIB).lib $(DIRENTLIB) /def:lua.def lua.obj - -lua.def: - echo EXPORTS > lua.def - echo xchat_plugin_init >> lua.def - echo xchat_plugin_deinit >> lua.def - -lua.obj: lua.c makefile.mak - cl $(CFLAGS) /I.. /Dsnprintf=g_snprintf lua.c - -clean: - del *.obj - del *.dll - del *.exp - del *.lib diff --git a/plugins/makefile.mak b/plugins/makefile.mak deleted file mode 100644 index 19b3cb75..00000000 --- a/plugins/makefile.mak +++ /dev/null @@ -1,71 +0,0 @@ -all: - @cd checksum - @-$(MAKE) /nologo /s /f makefile.mak $@ - @cd ..\gtkpref - @-$(MAKE) /nologo /s /f makefile.mak $@ - @cd ..\dns - @-$(MAKE) /nologo /s /f makefile.mak $@ - @cd ..\doat - @-$(MAKE) /nologo /s /f makefile.mak $@ - @cd ..\exec - @-$(MAKE) /nologo /s /f makefile.mak $@ - @cd ..\fishlim - @-$(MAKE) /nologo /s /f makefile.mak $@ - @cd ..\lua - @-$(MAKE) /nologo /s /f makefile.mak $@ - @cd ..\mpcinfo - @-$(MAKE) /nologo /s /f makefile.mak $@ -# @cd ..\nonbmp -# @-$(MAKE) /nologo /s /f makefile.mak $@ - @cd ..\python - @-$(MAKE) /nologo /s /f makefile.mak $@ - @cd ..\tcl - @-$(MAKE) /nologo /s /f makefile.mak $@ - @cd ..\upd - @-$(MAKE) /nologo /s /f makefile.mak $@ - @cd ..\xsasl - @-$(MAKE) /nologo /s /f makefile.mak $@ - @cd ..\xtray - @-$(MAKE) /nologo /s /f makefile.mak $@ - @cd ..\winamp - @-$(MAKE) /nologo /s /f makefile.mak $@ - @cd ..\winsys - @-$(MAKE) /nologo /s /f makefile.mak $@ - @cd ..\wmpa - @-$(MAKE) /nologo /s /f makefile.mak $@ - -clean: - @cd checksum - @-$(MAKE) /nologo /s /f makefile.mak clean $@ - @cd ..\gtkpref - @-$(MAKE) /nologo /s /f makefile.mak clean $@ - @cd ..\dns - @-$(MAKE) /nologo /s /f makefile.mak clean $@ - @cd ..\doat - @-$(MAKE) /nologo /s /f makefile.mak clean $@ - @cd ..\exec - @-$(MAKE) /nologo /s /f makefile.mak clean $@ - @cd ..\fishlim - @-$(MAKE) /nologo /s /f makefile.mak clean $@ - @cd ..\lua - @-$(MAKE) /nologo /s /f makefile.mak clean $@ - @cd ..\mpcinfo - @-$(MAKE) /nologo /s /f makefile.mak clean $@ -# @cd ..\nonbmp -# @-$(MAKE) /nologo /s /f makefile.mak clean $@ - @cd ..\python - @-$(MAKE) /nologo /s /f makefile.mak clean $@ - @cd ..\tcl - @-$(MAKE) /nologo /s /f makefile.mak clean $@ - @cd ..\upd - @-$(MAKE) /nologo /s /f makefile.mak clean $@ - @cd ..\xsasl - @-$(MAKE) /nologo /s /f makefile.mak clean $@ - @cd ..\xtray - @-$(MAKE) /nologo /s /f makefile.mak clean $@ - @cd ..\winamp - @-$(MAKE) /nologo /s /f makefile.mak clean $@ - @cd ..\winsys - @-$(MAKE) /nologo /s /f makefile.mak clean $@ - @cd ..\wmpa - @-$(MAKE) /nologo /s /f makefile.mak clean $@ diff --git a/plugins/mpcinfo/makefile.mak b/plugins/mpcinfo/makefile.mak deleted file mode 100644 index 4a8a2763..00000000 --- a/plugins/mpcinfo/makefile.mak +++ /dev/null @@ -1,18 +0,0 @@ -include "..\..\src\makeinc.mak" - -all: mpcinfo.obj mpcinfo.def - link $(LDFLAGS) $(LIBS) /dll /out:xcmpcinfo.dll /def:mpcinfo.def mpcinfo.obj - -mpcinfo.def: - echo EXPORTS > mpcinfo.def - echo xchat_plugin_init >> mpcinfo.def - echo xchat_plugin_deinit >> mpcinfo.def - -mpcinfo.obj: mpcinfo.c makefile.mak - cl $(CFLAGS) $(GLIB) /I.. mpcinfo.c - -clean: - del *.obj - del *.dll - del *.exp - del *.lib diff --git a/plugins/perl/xchat2-perl.html b/plugins/perl/hexchat-perl.html index 6092047e..6092047e 100644 --- a/plugins/perl/xchat2-perl.html +++ b/plugins/perl/hexchat-perl.html diff --git a/plugins/perl/xchat2-perldocs.html b/plugins/perl/hexchat-perldocs.html index 10d8f314..10d8f314 100644 --- a/plugins/perl/xchat2-perldocs.html +++ b/plugins/perl/hexchat-perldocs.html diff --git a/plugins/perl/makefile-512.mak b/plugins/perl/makefile-512.mak deleted file mode 100644 index 7f2fbe04..00000000 --- a/plugins/perl/makefile-512.mak +++ /dev/null @@ -1,40 +0,0 @@ -include "..\..\src\makeinc.mak" - -DIRENTLIB = ..\..\src\common\dirent-win32.lib -TARGET = $(PERL512OUTPUT) - -all: $(TARGET) - -perl.def: - echo EXPORTS > perl.def - echo xchat_plugin_init >> perl.def - echo xchat_plugin_deinit >> perl.def - echo xchat_plugin_get_info >> perl.def - -perl.obj: perl.c - $(CC) $(CFLAGS) perl.c $(GLIB) /I$(PERL512PATH)\perl\lib\CORE /I.. /DPERL_DLL=\"$(PERL512LIB).dll\" - -perl512.def: - gendef $(PERL512PATH)\perl\bin\perl512.dll - -$(PERL512LIB).lib: perl512.def -!ifdef X64 - lib /nologo /machine:x64 /def:perl512.def -!else - lib /nologo /machine:x86 /def:perl512.def -!endif - -perl.c: xchat.pm.h - -xchat.pm.h: lib/Xchat.pm lib/IRC.pm - perl.exe generate_header - -$(TARGET): perl.obj perl.def $(PERL512LIB).lib - $(LINK) /DLL /out:$(TARGET) perl.obj $(LDFLAGS) $(PERL512LIB).lib /delayload:$(PERL512LIB).dll $(DIRENTLIB) delayimp.lib user32.lib shell32.lib advapi32.lib /def:perl.def - -clean: - @del $(TARGET) - @del *.obj - @del *.def - @del *.lib - @del *.exp diff --git a/plugins/perl/makefile-514.mak b/plugins/perl/makefile-514.mak deleted file mode 100644 index 4c8d0ebd..00000000 --- a/plugins/perl/makefile-514.mak +++ /dev/null @@ -1,42 +0,0 @@ -include "..\..\src\makeinc.mak" - -DIRENTLIB = ..\..\src\common\dirent-win32.lib -TARGET = $(PERL514OUTPUT) - -all: $(TARGET) - -perl.def: - echo EXPORTS > perl.def - echo xchat_plugin_init >> perl.def - echo xchat_plugin_deinit >> perl.def - echo xchat_plugin_get_info >> perl.def - -# MSVC only supports __inline, while GCC only supports __inline__. This is defined incorretly -# in lib\CORE\config.h in Strawberry Perl, see #define PERL_STATIC_INLINE static __inline__ -perl.obj: perl.c - $(CC) $(CFLAGS) perl.c $(GLIB) /I$(PERL514PATH)\perl\lib\CORE /I.. /DPERL_DLL=\"$(PERL514LIB).dll\" /D__inline__=__inline - -perl514.def: - gendef $(PERL514PATH)\perl\bin\perl514.dll - -$(PERL514LIB).lib: perl514.def -!ifdef X64 - lib /nologo /machine:x64 /def:perl514.def -!else - lib /nologo /machine:x86 /def:perl514.def -!endif - -perl.c: xchat.pm.h - -xchat.pm.h: lib/Xchat.pm lib/IRC.pm - perl.exe generate_header - -$(TARGET): perl.obj perl.def $(PERL514LIB).lib - $(LINK) /DLL /out:$(TARGET) perl.obj $(LDFLAGS) $(PERL514LIB).lib /delayload:$(PERL514LIB).dll $(DIRENTLIB) delayimp.lib user32.lib shell32.lib advapi32.lib /def:perl.def - -clean: - @del $(TARGET) - @del *.obj - @del *.def - @del *.lib - @del *.exp diff --git a/plugins/python/makefile.mak b/plugins/python/makefile.mak deleted file mode 100644 index bc004577..00000000 --- a/plugins/python/makefile.mak +++ /dev/null @@ -1,25 +0,0 @@ -include "..\..\src\makeinc.mak" - -DIRENTLIB = ..\..\src\common\dirent-win32.lib -TARGET = $(PYTHONOUTPUT) - -all: $(TARGET) - -python.def: - echo EXPORTS > python.def - echo xchat_plugin_init >> python.def - echo xchat_plugin_deinit >> python.def - echo xchat_plugin_get_info >> python.def - -python.obj: python.c - $(CC) $(CFLAGS) /I.. /Dusleep=_sleep /DPATH_MAX=255 python.c $(GLIB) /I$(PYTHONPATH)\include /DPYTHON_DLL=\"$(PYTHONLIB).dll\" - -$(TARGET): python.obj python.def - $(LINK) /dll /out:$(TARGET) $(LDFLAGS) python.obj /libpath:$(PYTHONPATH)\libs $(PYTHONLIB).lib $(DIRENTLIB) $(LIBS) /def:python.def - -clean: - del $(TARGET) - del *.obj - del python.def - del *.lib - del *.exp diff --git a/plugins/tcl/makefile.mak b/plugins/tcl/makefile.mak deleted file mode 100644 index c88f5c4f..00000000 --- a/plugins/tcl/makefile.mak +++ /dev/null @@ -1,22 +0,0 @@ -include "..\..\src\makeinc.mak" - -TARGET = $(TCLOUTPUT) - -all: $(TARGET) - -tcl.def: - echo EXPORTS > tcl.def - echo xchat_plugin_init >> tcl.def - echo xchat_plugin_deinit >> tcl.def - echo xchat_plugin_get_info >> tcl.def - -tclplugin.obj: tclplugin.c - $(CC) $(CFLAGS) /I.. tclplugin.c /I$(TCLPATH)\include /DTCL_DLL=\"$(TCLLIB).dll\" - -$(TARGET): tclplugin.obj tcl.def - $(LINK) /dll /out:$(TARGET) $(LDFLAGS) tclplugin.obj /libpath:$(TCLPATH)\lib $(TCLLIB).lib /delayload:$(TCLLIB).dll delayimp.lib /def:tcl.def - -clean: - del $(TARGET) - del *.obj - del tcl.def diff --git a/plugins/upd/makefile.mak b/plugins/upd/makefile.mak deleted file mode 100644 index 34b54cb8..00000000 --- a/plugins/upd/makefile.mak +++ /dev/null @@ -1,18 +0,0 @@ -include "..\..\src\makeinc.mak" - -all: upd.obj upd.def - link $(LDFLAGS) $(LIBS) /dll /out:xcupd.dll /def:upd.def upd.obj - -upd.def: - echo EXPORTS > upd.def - echo xchat_plugin_init >> upd.def - echo xchat_plugin_deinit >> upd.def - -upd.obj: upd.c makefile.mak - cl $(CFLAGS) $(GLIB) /I.. upd.c - -clean: - del *.obj - del *.dll - del *.exp - del *.lib diff --git a/plugins/winamp/makefile.mak b/plugins/winamp/makefile.mak deleted file mode 100644 index 79adf87e..00000000 --- a/plugins/winamp/makefile.mak +++ /dev/null @@ -1,18 +0,0 @@ -include "..\..\src\makeinc.mak" - -all: winamp.obj winamp.def - link $(LDFLAGS) $(LIBS) /dll /out:xcwinamp.dll /def:winamp.def winamp.obj - -winamp.def: - echo EXPORTS > winamp.def - echo xchat_plugin_init >> winamp.def - echo xchat_plugin_deinit >> winamp.def - -winamp.obj: winamp.c makefile.mak - cl $(CFLAGS) /I.. winamp.c - -clean: - del *.obj - del *.dll - del *.exp - del *.lib diff --git a/plugins/winsys/makefile.mak b/plugins/winsys/makefile.mak deleted file mode 100644 index 31f24eb1..00000000 --- a/plugins/winsys/makefile.mak +++ /dev/null @@ -1,18 +0,0 @@ -include "..\..\src\makeinc.mak" - -all: winsys.obj winsys.def - link $(LDFLAGS) $(LIBS) /NODEFAULTLIB:comsupp.lib wbemuuid.lib vccomsup.lib /dll /out:xcwinsys.dll /def:winsys.def winsys.obj - -winsys.def: - echo EXPORTS > winsys.def - echo xchat_plugin_init >> winsys.def - echo xchat_plugin_deinit >> winsys.def - -winsys.obj: winsys.cpp makefile.mak - cl $(CFLAGS) $(GLIB) /DUNICODE /D_UNICODE /Zc:wchar_t- /I.. winsys.cpp - -clean: - del *.obj - del *.dll - del *.exp - del *.lib diff --git a/plugins/wmpa/makefile.mak b/plugins/wmpa/makefile.mak deleted file mode 100644 index 37e0ecd0..00000000 --- a/plugins/wmpa/makefile.mak +++ /dev/null @@ -1,53 +0,0 @@ -include "..\..\src\makeinc.mak" - -TARGET = xcwmpa.dll - -WMPA_OBJECTS = \ -wmpa.obj \ -wmpadialog.obj \ -wmpcdrom.obj \ -wmpcdromcollection.obj \ -wmpclosedcaption.obj \ -wmpcontrols.obj \ -wmpdvd.obj \ -wmperror.obj \ -wmperroritem.obj \ -wmpmedia.obj \ -wmpmediacollection.obj \ -wmpnetwork.obj \ -wmpplayer4.obj \ -wmpplayerapplication.obj \ -wmpplaylist.obj \ -wmpplaylistarray.obj \ -wmpplaylistcollection.obj \ -wmpsettings.obj \ -wmpstringcollection.obj \ -xchat-plugin.obj - -CPPFLAGS = $(CPPFLAGS) /EHsc /D_AFXDLL /D_AFX_NO_DAO_SUPPORT /D_WINDLL /D_USRDLL - -all: $(WMPA_OBJECTS) $(TARGET) - -.cpp.obj: - $(CC) $(CPPFLAGS) /Yc"StdAfx.h" /Fp"wmpa.pch" StdAfx.cpp - $(CC) $(CPPFLAGS) /Yu"StdAfx.h" /Fp"wmpa.pch" /c $< - -$(TARGET): $(WMPA_OBJECTS) - rc /nologo /D_AFXDLL wmpa.rc -!ifdef X64 - midl /nologo /mktyplib203 /char signed /env x64 /h wmpa_h.h /tlb wmpa.tlb wmpa.odl -!else - midl /nologo /mktyplib203 /char signed /env win32 /h wmpa_h.h /tlb wmpa.tlb wmpa.odl -!endif - $(LINK) /DLL /out:$(TARGET) $(LDFLAGS) $(WMPA_OBJECTS) $(LIBS) /def:wmpa.def wmpa.res - -clean: - del $(TARGET) - del *.obj - del wmpa.pch - del wmpa.res - del wmpa.tlb - del wmpa_h.h - del wmpa_i.c - del *.exp - del *.lib diff --git a/plugins/xsasl/makefile.mak b/plugins/xsasl/makefile.mak deleted file mode 100644 index e1ffd0ec..00000000 --- a/plugins/xsasl/makefile.mak +++ /dev/null @@ -1,18 +0,0 @@ -include "..\..\src\makeinc.mak" - -all: xsasl.obj xsasl.def - link $(LDFLAGS) $(LIBS) /dll /out:xcxsasl.dll /def:xsasl.def xsasl.obj - -xsasl.def: - echo EXPORTS > xsasl.def - echo xchat_plugin_init >> xsasl.def - echo xchat_plugin_deinit >> xsasl.def - -xsasl.obj: xsasl.c makefile.mak - cl $(CFLAGS) $(GLIB) /I.. xsasl.c - -clean: - del *.obj - del *.dll - del *.exp - del *.lib diff --git a/plugins/xtray/icons/xchat.ico b/plugins/xtray/icons/hexchat.ico index 73247fd0..73247fd0 100644 --- a/plugins/xtray/icons/xchat.ico +++ b/plugins/xtray/icons/hexchat.ico Binary files differdiff --git a/plugins/xtray/makefile.mak b/plugins/xtray/makefile.mak deleted file mode 100644 index ec2c94b3..00000000 --- a/plugins/xtray/makefile.mak +++ /dev/null @@ -1,37 +0,0 @@ -include "..\..\src\makeinc.mak" - -TARGET = xtray.dll - -TRAY_OBJECTS = \ -callbacks.obj \ -sdAlerts.obj \ -sdTray.obj \ -utility.obj \ -xchat.obj \ -xtray.obj - -CPPFLAGS = $(CPPFLAGS) /D_STL70_ /D_STATIC_CPPLIB /EHsc /DUNICODE /D_UNICODE - -all: $(TRAY_OBJECTS) $(TARGET) - -xtray.def: - echo EXPORTS > xtray.def - echo xchat_plugin_init >> xtray.def - echo xchat_plugin_deinit >> xtray.def - -.cpp.obj: - $(CC) $(CPPFLAGS) /I.. /c $< - -res: - rc /nologo resource.rc - -$(TARGET): $(TRAY_OBJECTS) xtray.def res - $(LINK) /DLL /out:$(TARGET) $(LDFLAGS) $(TRAY_OBJECTS) ntstc_msvcrt.lib $(LIBS) /def:xtray.def resource.res - -clean: - del $(TARGET) - del *.obj - del xtray.def - del resource.res - del *.lib - del *.exp |