RocketWorkbench/libnum/Makefile.win
R. J. Dev. Kwan eb05416991 Initial commit of "Rocket Workbench".
Taken from sources in CVS at:
    https://sourceforge.net/projects/rocketworkbench/

Sources extracted in two steps:
1. Pull entire project tree into a subdir "rwb" via "rsync":
    rsync -a a.cvs.sourceforge.net::cvsroot/rocketworkbench/ rwb/.
2. Export sources:
    export CVSROOT=$(pwd)/rwb
    SUBDIRS="analyser cpropep cpropep-web CVSROOT data libcompat libcpropep libnum libsimulation libthermo prop rocketworkbench rockflight"
    mkdir rwbx; cd rwbx
    cvs export -D now ${SUBDIRS}

After this (and some backups for safety), the directory content was
added to a Git repo:
    git init .
    git add *
2021-01-20 15:50:36 -08:00

44 lines
729 B
Makefile

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)