home *** CD-ROM | disk | FTP | other *** search
Makefile | 1996-07-31 | 790 b | 43 lines |
- !ifdef i386
- LIBLIST = ..\object\lib386.lst
- !else
- LIBLIST = ..\object\lib68k.lst
- !endif
-
- LIBLOG = ..\lib.log
-
- all:
- cd alloc
- del $(LIBLIST)
- del $(LIBLOG)
- make >> $(LIBLOG)
- cd ..\COMPLIB
- make >> $(LIBLOG)
- cd ..\CTYPE
- make >> $(LIBLOG)
- cd ..\DATA
- make >> $(LIBLOG)
- cd ..\IO
- make >> $(LIBLOG)
- cd ..\MATH
- make >> $(LIBLOG)
- cd ..\PROCONT
- make >> $(LIBLOG)
- cd ..\SORT
- make >> $(LIBLOG)
- cd ..\STARTUP
- make >> $(LIBLOG)
- cd alloc
- cd ..\STRING
- make >> $(LIBLOG)
- cd ..\TIME
- make >> $(LIBLOG)
- cd ..\object
- !ifdef i386
- del lib386.lib
- tlib lib386 @$(LIBLIST) >> $(LIBLOG)
- !else
- del lib68k.lib
- lib lib68k @$(LIBLIST) >> $(LIBLOG)
- !endif
- cd ..