*** empty log message ***

This commit is contained in:
2005-05-19 16:41:10 +00:00
parent 716fd0f03d
commit 4f49c6d2db
15 changed files with 154 additions and 60 deletions

18
ase/test/stx/makefile.tcc Normal file
View File

@ -0,0 +1,18 @@
SRCS = stx.c
OBJS = stx.obj
OUT = stx.exe
CC = \tc\tcc
CFLAGS = -I..\..\.. -mh -D_DOS -w
LIBS = \tc\lib\ch.lib \tc\lib\c0h.obj ..\..\..\xp\stx\xpstx.lib
all: $(OBJS)
\tc\tlink $(OBJS),$(OUT),,$(LIBS)
clean:
del $(OBJS) *.obj $(OUT)
.SUFFIXES: .c .obj
.c.obj:
$(CC) $(CFLAGS) -c $<