xchat-text compiles but won't run

This commit is contained in:
berkeviktor@aol.com
2010-08-25 04:19:10 +02:00
parent 4328d4ffc1
commit e0b7f0008b
3 changed files with 94 additions and 0 deletions

14
src/fe-text/makefile.mak Normal file
View File

@@ -0,0 +1,14 @@
include "..\makeinc.mak"
COMLIB = ..\common\xchatcommon.lib
PROG = xchat-text.exe
all: fe-text.obj
link /out:$(PROG) /entry:mainCRTStartup $(LDFLAGS) $(LIBS) $(COMLIB) fe-text.obj
fe-text.obj: fe-text.c makefile.mak
cl $(CFLAGS) $(GLIB) fe-text.c
clean:
del *.obj
del $(PROG)

View File

@@ -3,6 +3,8 @@ all:
@-$(MAKE) /nologo /s /f makefile.mak $@
@cd ..\fe-gtk
@-$(MAKE) /nologo /s /f makefile.mak $@
# @cd ..\fe-text
# @-$(MAKE) /nologo /s /f makefile.mak $@
clean:
@del common\*.obj