*** empty log message ***

This commit is contained in:
2005-05-18 16:05:34 +00:00
parent 95540943a4
commit 855f95d490
3 changed files with 46 additions and 5 deletions

20
ase/test/stx/makefile.bcc Normal file
View File

@ -0,0 +1,20 @@
SRCS = stx.c
OBJS = stx.obj
OUT = stx.exe
CC = bcc32
CFLAGS = -I..\..\..
LDFLAGS = -L..\..\..\xp\bas -L..\..\..\xp\stx
LIBS = import32.lib cw32mt.lib xpbas.lib xpstx.lib
STARTUP = c0x32w.obj
all: $(OBJS)
ilink32 $(LDFLAGS) $(STARTUP) $(OBJS),$(OUT),,$(LIBS),,
clean:
del $(OBJS) *.obj $(OUT)
.SUFFIXES: .c .obj
.c.obj:
$(CC) $(CFLAGS) -c $<