Based on the original Rocket Workbench on SourceForge in CVS at: https://sourceforge.net/projects/rocketworkbench
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

43 lines
729 B

CC = bcc32
CPP32 = cpp32
LIBRARIAN = tlib
LINKER = ilink32
RC = brc32
COPT = -3 -O2 -w-8012 -w-8004 -w-8057 -IC:\borland\bcc55\include
OBJS = lu.obj rk4.obj general.obj print.obj sec.obj
TLIBNUM = +lu.obj +rk4.obj +general.obj +print.obj +sec.obj
LDOPT = -LC:\borland\bcc55\lib
PROG = test.exe
PROGOBJS = test.obj
LIBNUM = libnum.lib
.SUFFIXES: .c
all: $(LIBNUM) $(PROG)
.c.obj:
$(CC) $(DEF) $(COPT) -c $*.c -o $*.obj
$(LIBNUM): $(OBJS)
tlib $@ $(TLIBNUM)
$(PROG): $(PROGOBJS)
$(CC) $(LDOPT) $(LIBNUM) $(PROGOBJS)
clean:
del *.obj
del *.bak
del *.tds
deep-clean: clean
del $(LIBNUM)
del $(PROG)