summary refs log tree commit diff stats
path: root/src/fe-gtk
diff options
context:
space:
mode:
authorBerke Viktor <bviktor@hexchat.org>2012-07-13 17:55:31 +0200
committerBerke Viktor <bviktor@hexchat.org>2012-07-13 17:55:31 +0200
commitea2c58c2344f3ed9c4fa01f05119c5a3715ffdaa (patch)
tree3b289f1b3b2c6682fefb4926ee8d927f64c55760 /src/fe-gtk
parent52525478ab1bc9cd68d4ebe70bbce667aa58314d (diff)
Rename files, delete old windows makefiles
Diffstat (limited to 'src/fe-gtk')
-rw-r--r--src/fe-gtk/makefile.mak62
1 files changed, 0 insertions, 62 deletions
diff --git a/src/fe-gtk/makefile.mak b/src/fe-gtk/makefile.mak
deleted file mode 100644
index 27922405..00000000
--- a/src/fe-gtk/makefile.mak
+++ /dev/null
@@ -1,62 +0,0 @@
-include "..\makeinc.mak"
-
-FEGTK_OBJECTS = \
-about.obj \
-ascii.obj \
-banlist.obj \
-chanlist.obj \
-chanview.obj \
-custom-list.obj \
-dccgui.obj \
-editlist.obj \
-fe-gtk.obj \
-fkeys.obj \
-gtkutil.obj \
-ignoregui.obj \
-joind.obj \
-maingui.obj \
-menu.obj \
-notifygui.obj \
-palette.obj \
-pixmaps.obj \
-plugingui.obj \
-plugin-tray.obj \
-rawlog.obj \
-search.obj \
-servlistgui.obj \
-setup.obj \
-sexy-iso-codes.obj \
-sexy-marshal.obj \
-sexy-spell-entry.obj \
-textgui.obj \
-urlgrab.obj \
-userlistgui.obj \
-xtext.obj
-
-!ifdef X64
-MACHINE_FLAG = /MACHINE:X64
-!else
-MACHINE_FLAG = /MACHINE:X86
-!endif
-
-COMLIB = ..\common\xchatcommon.lib
-PROG = xchat.exe
-
-all: $(PROG)
-
-.c.obj::
-	$(CC) $(CFLAGS) -I..\..\plugins $(GLIB) $(GTK) $<
-
-$(PROG): $(FEGTK_OBJECTS) $(COMLIB) xchat-icon.obj
-	$(LINK) /out:$(PROG) /entry:mainCRTStartup $(LDFLAGS) $(LIBS) $(FEGTK_OBJECTS) $(COMLIB) xchat-icon.obj
-
-xchat.res: xchat.rc ../../xchat.ico
-	rc /nologo /r xchat.rc
-
-xchat-icon.obj: xchat.res
-	cvtres /nologo $(MACHINE_FLAG) /OUT:xchat-icon.obj xchat.res
-
-clean:
-	@del *.obj
-	@del $(PROG)
-	@del xchat.res