summary refs log tree commit diff stats
path: root/src/fe-text/makefile.mak
blob: abca99859d705a5a648db93e216ef84428c7111a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
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)