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 /src/common/makefile.mak | |
parent | 52525478ab1bc9cd68d4ebe70bbce667aa58314d (diff) |
Rename files, delete old windows makefiles
Diffstat (limited to 'src/common/makefile.mak')
-rw-r--r-- | src/common/makefile.mak | 45 |
1 files changed, 0 insertions, 45 deletions
diff --git a/src/common/makefile.mak b/src/common/makefile.mak deleted file mode 100644 index d6df2608..00000000 --- a/src/common/makefile.mak +++ /dev/null @@ -1,45 +0,0 @@ -include "..\makeinc.mak" - -COMMON_OBJECTS = \ -cfgfiles.obj \ -chanopt.obj \ -ctcp.obj \ -dcc.obj \ -dirent-win32.obj \ -history.obj \ -identd.obj \ -ignore.obj \ -inbound.obj \ -modes.obj \ -network.obj \ -notify.obj \ -outbound.obj \ -plugin.obj \ -plugin-timer.obj \ -proto-irc.obj \ -server.obj \ -servlist.obj \ -ssl.obj \ -text.obj \ -thread.obj \ -tree.obj \ -url.obj \ -userlist.obj \ -util.obj \ -xchat.obj - -all: $(COMMON_OBJECTS) xchatcommon.lib dirent-win32.lib - -xchatcommon.lib: $(COMMON_OBJECTS) - lib /nologo /out:xchatcommon.lib $(COMMON_OBJECTS) - -dirent-win32.lib: dirent-win32.obj - lib /nologo /out:dirent-win32.lib dirent-win32.obj - -.c.obj:: - $(CC) $(CFLAGS) $(GLIB) $< - -clean: - @del *.obj - @del xchatcommon.lib - @del dirent-win32.lib |