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 | |
parent | 52525478ab1bc9cd68d4ebe70bbce667aa58314d (diff) |
Rename files, delete old windows makefiles
Diffstat (limited to 'src')
-rw-r--r-- | src/common/makefile.mak | 45 | ||||
-rw-r--r-- | src/fe-gtk/makefile.mak | 62 | ||||
-rw-r--r-- | src/fe-text/makefile.mak | 20 | ||||
-rw-r--r-- | src/makefile.mak | 23 | ||||
-rw-r--r-- | src/makeinc.skel.mak | 45 | ||||
-rw-r--r-- | src/pixmaps/makefile.mak | 18 |
6 files changed, 0 insertions, 213 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 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 diff --git a/src/fe-text/makefile.mak b/src/fe-text/makefile.mak deleted file mode 100644 index 59d277d3..00000000 --- a/src/fe-text/makefile.mak +++ /dev/null @@ -1,20 +0,0 @@ -include "..\makeinc.mak" - -COMLIB = ..\common\xchatcommon.lib -PROG = xchat-text.exe - -!ifdef X64 -PLATOBJ = msvcrt_win2003.obj -!else -PLATOBJ = msvcrt_winxp.obj -!endif - -all: fe-text.obj - link /out:$(PROG) /subsystem:console /nologo $(PLATOBJ) $(LIBS) $(COMLIB) fe-text.obj - -fe-text.obj: fe-text.c makefile.mak - cl $(CFLAGS) $(GLIB) fe-text.c - -clean: - @del *.obj - @del $(PROG) diff --git a/src/makefile.mak b/src/makefile.mak deleted file mode 100644 index cd73b879..00000000 --- a/src/makefile.mak +++ /dev/null @@ -1,23 +0,0 @@ -all: - @cd pixmaps - @-$(MAKE) /nologo /s /f makefile.mak $@ - @cd ..\common - @-$(MAKE) /nologo /s /f makefile.mak $@ - @cd ..\fe-gtk - @-$(MAKE) /nologo /s /f makefile.mak $@ - @cd ..\fe-text - @-$(MAKE) /nologo /s /f makefile.mak $@ - @cd ..\gtk2-prefs - @-$(MAKE) /nologo /s /f makefile.mak $@ - -clean: - @cd pixmaps - @-$(MAKE) /nologo /s /f makefile.mak clean $@ - @cd ..\common - @-$(MAKE) /nologo /s /f makefile.mak clean $@ - @cd ..\fe-gtk - @-$(MAKE) /nologo /s /f makefile.mak clean $@ - @cd ..\fe-text - @-$(MAKE) /nologo /s /f makefile.mak clean $@ - @cd ..\gtk2-prefs - @-$(MAKE) /nologo /s /f makefile.mak clean $@ diff --git a/src/makeinc.skel.mak b/src/makeinc.skel.mak deleted file mode 100644 index 552b6a6e..00000000 --- a/src/makeinc.skel.mak +++ /dev/null @@ -1,45 +0,0 @@ -CC = cl -LINK = link -CFLAGS = $(CFLAGS) /Ox /c /MD /MP /W0 /nologo -CFLAGS = $(CFLAGS) /DWIN32 /DG_DISABLE_CAST_CHECKS /DG_DISABLE_DEPRECATED /DGDK_PIXBUF_DISABLE_DEPRECATED /DGDK_DISABLE_DEPRECATED /DHAVE_STRTOULL /Dstrtoull=_strtoui64 /Dstrcasecmp=stricmp /Dstrncasecmp=strnicmp -CFLAGS = $(CFLAGS) /I$(DEV)\include -CPPFLAGS = /c /MD /W0 /nologo /DWIN32 -LDFLAGS = /subsystem:windows /nologo -LIBS = $(LIBS) gdi32.lib shell32.lib user32.lib advapi32.lib imm32.lib ole32.lib winmm.lib ws2_32.lib wininet.lib comdlg32.lib libeay32.lib ssleay32.lib - -GLIB = /I$(DEV)\include\glib-2.0 /I$(DEV)\lib\glib-2.0\include /I$(DEV)\include\libxml2 -GTK = /I$(DEV)\include\gtk-2.0 /I$(DEV)\lib\gtk-2.0\include /I$(DEV)\include\atk-1.0 /I$(DEV)\include\cairo /I$(DEV)\include\pango-1.0 /I$(DEV)\include\gdk-pixbuf-2.0 -LIBS = $(LIBS) /libpath:$(DEV)\lib gtk-win32-2.0.lib gdk-win32-2.0.lib atk-1.0.lib gio-2.0.lib gdk_pixbuf-2.0.lib pangowin32-1.0.lib pangocairo-1.0.lib pango-1.0.lib cairo.lib gobject-2.0.lib gmodule-2.0.lib glib-2.0.lib intl.lib libxml2.lib -#obs LIBS = $(LIBS) /libpath:$(DEV)\lib libgtk-win32-2.0-0.lib libgdk-win32-2.0-0.lib libatk-1.0-0.lib libgio-2.0-0.lib libgdk_pixbuf-2.0-0.lib libpangowin32-1.0-0.lib libpangocairo-1.0-0.lib libpango-1.0-0.lib libcairo-2.lib libgobject-2.0-0.lib libgmodule-2.0-0.lib libglib-2.0-0.lib libintl-8.lib libxml2-2.lib - -LUALIB = lua51 -LUAOUTPUT = xclua.dll - -PERL512LIB = perl512 -PERL512OUTPUT = xcperl-512.dll -PERL514LIB = perl514 -PERL514OUTPUT = xcperl-514.dll - -PYTHONLIB = python27 -PYTHONOUTPUT = xcpython.dll - -TCLLIB = tcl85 -TCLOUTPUT = xctcl.dll - -!ifdef X64 -CFLAGS = $(CFLAGS) /favor:AMD64 /D_WIN64 -CPPFLAGS = $(CPPFLAGS) /favor:AMD64 /D_WIN64 -LDFLAGS = $(LDFLAGS) msvcrt_win2003.obj - -PERL512PATH = c:\mozilla-build\perl-5.12-x64 -PERL514PATH = c:\mozilla-build\perl-5.14-x64 -PYTHONPATH = c:\mozilla-build\python-2.7-x64 -TCLPATH = c:\mozilla-build\tcl-8.5-x64 -!else -LDFLAGS = $(LDFLAGS) msvcrt_winxp.obj - -PERL512PATH = c:\mozilla-build\perl-5.12-x86 -PERL514PATH = c:\mozilla-build\perl-5.14-x86 -PYTHONPATH = c:\mozilla-build\python-2.7-x86 -TCLPATH = c:\mozilla-build\tcl-8.5-x86 -!endif diff --git a/src/pixmaps/makefile.mak b/src/pixmaps/makefile.mak deleted file mode 100644 index f9535dbe..00000000 --- a/src/pixmaps/makefile.mak +++ /dev/null @@ -1,18 +0,0 @@ -CONV = gdk-pixbuf-csource - -LIST = bookpng book.png \ - hoppng hop.png \ - oppng op.png \ - purplepng purple.png \ - redpng red.png \ - trayfilepng fileoffer.png \ - trayhilightpng highlight.png \ - traymsgpng message.png \ - voicepng voice.png \ - xchatpng ..\..\xchat.png - -all: - @$(CONV) --build-list $(LIST) > inline_pngs.h - -clean: - @del *.h |