mirror of
https://github.com/moparisthebest/hexchat
synced 2024-11-22 17:22:18 -05:00
don't build mmx_cmod since it ain't speeding up anything (and it's x86-only btw)
This commit is contained in:
parent
87f7151ed7
commit
ed6a243f18
@ -4,7 +4,7 @@ type makeinc.skel > makeinc.mak
|
|||||||
set INCLUDE=c:\WinDDK\7600.16385.1\inc\api;c:\WinDDK\7600.16385.1\inc\crt;c:\WinDDK\7600.16385.1\inc\api\crt\stl70;c:\mozilla-build\build\xchat-dev32\include
|
set INCLUDE=c:\WinDDK\7600.16385.1\inc\api;c:\WinDDK\7600.16385.1\inc\crt;c:\WinDDK\7600.16385.1\inc\api\crt\stl70;c:\mozilla-build\build\xchat-dev32\include
|
||||||
set LIB=c:\WinDDK\7600.16385.1\lib\wxp\i386;c:\WinDDK\7600.16385.1\lib\Crt\i386
|
set LIB=c:\WinDDK\7600.16385.1\lib\wxp\i386;c:\WinDDK\7600.16385.1\lib\Crt\i386
|
||||||
set OPATH=%PATH%
|
set OPATH=%PATH%
|
||||||
set PATH=c:\WinDDK\7600.16385.1\bin\x86\x86;c:\WinDDK\7600.16385.1\bin\x86;c:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\bin;c:\Program Files (x86)\Microsoft SDKs\Windows\v7.0A\Bin;c:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\IDE;c:\mozilla-build\build\xchat-dev32\bin;c:\mozilla-build\mingw32\bin
|
set PATH=c:\WinDDK\7600.16385.1\bin\x86\x86;c:\WinDDK\7600.16385.1\bin\x86;c:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\bin;c:\Program Files (x86)\Microsoft SDKs\Windows\v7.0A\Bin;c:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\IDE;c:\mozilla-build\build\xchat-dev32\bin
|
||||||
nmake /nologo /f makefile.mak clean
|
nmake /nologo /f makefile.mak clean
|
||||||
cd pixmaps
|
cd pixmaps
|
||||||
nmake /nologo /f makefile.mak
|
nmake /nologo /f makefile.mak
|
||||||
|
@ -11,9 +11,6 @@ PROG = xchat.exe
|
|||||||
|
|
||||||
all: $(PROG)
|
all: $(PROG)
|
||||||
|
|
||||||
mmx_cmod.o: mmx_cmod.S
|
|
||||||
gcc -DUNDERSCORE_SYMBOLS -c mmx_cmod.S
|
|
||||||
|
|
||||||
.c.obj:
|
.c.obj:
|
||||||
$(CC) $(CFLAGS) -I..\..\plugins $(GLIB) $(GTK) $(SPELL) $<
|
$(CC) $(CFLAGS) -I..\..\plugins $(GLIB) $(GTK) $(SPELL) $<
|
||||||
|
|
||||||
@ -31,7 +28,6 @@ xchat-icon.obj: xchat.res
|
|||||||
|
|
||||||
clean:
|
clean:
|
||||||
@del *.obj
|
@del *.obj
|
||||||
@del mmx_cmod.o
|
|
||||||
@del $(PROG)
|
@del $(PROG)
|
||||||
@del xchat.rc
|
@del xchat.rc
|
||||||
@del xchat.res
|
@del xchat.res
|
||||||
|
@ -10,7 +10,6 @@ clean:
|
|||||||
@del common\*.obj
|
@del common\*.obj
|
||||||
@del common\xchatcommon.lib
|
@del common\xchatcommon.lib
|
||||||
@del fe-gtk\*.obj
|
@del fe-gtk\*.obj
|
||||||
@del fe-gtk\mmx_cmod.o
|
|
||||||
@del fe-gtk\xchat.exe
|
@del fe-gtk\xchat.exe
|
||||||
@del fe-gtk\xchat.rc
|
@del fe-gtk\xchat.rc
|
||||||
@del fe-gtk\xchat.res
|
@del fe-gtk\xchat.res
|
||||||
|
@ -43,8 +43,6 @@ LDFLAGS = $(LDFLAGS) msvcrt_winxp.obj
|
|||||||
LUAPATH = c:\mozilla-build\build\lua-wdk-5.1.4-2-x86
|
LUAPATH = c:\mozilla-build\build\lua-wdk-5.1.4-2-x86
|
||||||
PYTHONPATH = c:\mozilla-build\python-2.6-x86
|
PYTHONPATH = c:\mozilla-build\python-2.6-x86
|
||||||
TCLPATH = c:\mozilla-build\tcl-8.5-x86
|
TCLPATH = c:\mozilla-build\tcl-8.5-x86
|
||||||
|
|
||||||
MMX = YES
|
|
||||||
!endif
|
!endif
|
||||||
#############################################################
|
#############################################################
|
||||||
|
|
||||||
@ -113,8 +111,3 @@ textgui.obj \
|
|||||||
urlgrab.obj \
|
urlgrab.obj \
|
||||||
userlistgui.obj \
|
userlistgui.obj \
|
||||||
xtext.obj
|
xtext.obj
|
||||||
|
|
||||||
!ifdef MMX
|
|
||||||
FEGTK_OBJECTS = $(FEGTK_OBJECTS) mmx_cmod.o
|
|
||||||
CFLAGS = $(CFLAGS) -DUSE_MMX
|
|
||||||
!endif
|
|
||||||
|
Loading…
Reference in New Issue
Block a user