home *** CD-ROM | disk | FTP | other *** search
Makefile | 1997-06-09 | 810 b | 38 lines |
-
- TARGNAME = cldos
-
- i386 = -Di386=1 -DCFLAGS=-DNONRECURSIVE
-
- #LIBLOG = ..\lib.log
- LIBLIST = ..\object\lib386.lst
- LIBLOG = con:
-
- all:
- cd alloc
- del $(LIBLIST)
- # del $(LIBLOG)
- make $(i386) >> $(LIBLOG)
- cd ..\COMPLIB
- make $(i386) >> $(LIBLOG)
- cd ..\CTYPE
- make $(i386) >> $(LIBLOG)
- cd ..\DATA
- make $(i386) >> $(LIBLOG)
- cd ..\IO
- make $(i386) >> $(LIBLOG)
- cd ..\MATH
- make $(i386) >> $(LIBLOG)
- cd ..\PROCONT
- make $(i386) >> $(LIBLOG)
- cd ..\SORT
- make $(i386) >> $(LIBLOG)
- cd ..\MSDOS
- make $(i386) >> $(LIBLOG)
- cd ..\STRING
- make $(i386) >> $(LIBLOG)
- cd ..\TIME
- make $(i386) >> $(LIBLOG)
- cd ..\object
- del $(TARGNAME).lib
- tlib $(TARGNAME) @$(LIBLIST) >> $(LIBLOG)
- cd ..