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.

38 lines
616 B

  1. CC = bcc32
  2. CPP32 = cpp32
  3. LIBRARIAN = tlib
  4. LINKER = ilink32
  5. RC = brc32
  6. COPT = -3 -O2 -w-8012 -w-8004 -w-8057 -IC:\borland\bcc55\include
  7. LDOPT = -LC:\borland\bcc55\lib
  8. LIB = compat.lib thermo.lib
  9. LIBDIR = -L..\lib\
  10. IDIR = -I..\lib\
  11. DEF = -DBORLAND
  12. PROG = prop.exe
  13. OBJS = prop.obj getopt.obj
  14. .SUFFIXES: .c
  15. all: $(PROG)
  16. .c.obj:
  17. $(CC) $(DEF) $(COPT) $(IDIR) -c $*.c -o $*.obj
  18. $(PROG): $(OBJS)
  19. $(CC) $(LDOPT) $(LIBDIR) $(LIB) $(OBJS)
  20. clean:
  21. del *.obj
  22. del *.bak
  23. del *.tds
  24. deep-clean: clean
  25. del $(PROG)