mirror of
https://github.com/ZoiteChat/zoitechat.git
synced 2026-03-11 16:20:20 +00:00
Rename files, delete old windows makefiles
This commit is contained in:
@@ -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
|
||||
@@ -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
|
||||
@@ -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)
|
||||
@@ -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 $@
|
||||
@@ -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
|
||||
@@ -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
|
||||
Reference in New Issue
Block a user