home *** CD-ROM | disk | FTP | other *** search
Makefile | 1997-03-11 | 1.3 KB | 67 lines |
- !ifdef cl0
- TARGET = -DCFLAGS
- TARGNAME = cl0
- !endif
- !ifdef cll
- TARGET = -DCFLAGS=/C+L
- TARGNAME = cll
- !endif
- !ifdef cl2
- TARGET = -DCFLAGS=/C+2
- TARGNAME = cl2
- !endif
- !ifdef cla
- TARGET = -DCFLAGS=/C+A
- TARGNAME = cla
- !endif
- !ifdef clas
- TARGET = -DCFLAGS=/C+As
- TARGNAME = clas
- !endif
-
- !ifdef i386
- LIBLIST = ..\object\lib386.lst
- LIB = tlib
- TARGNAME = cl386
- TARGET = -DCFLAGS
- !else
- LIBLIST = ..\object\lib68k.lst
- LIB = lib
- !ifndef TARGET
- TARGET = -DCFLAGS
- TARGNAME = cl0
- !endif
- !endif
-
- #LIBLOG = ..\lib.log
- LIBLOG = con:
-
- all:
- cd alloc
- del $(LIBLIST)
- # del $(LIBLOG)
- imake /S $(TARGET) >> $(LIBLOG)
- cd ..\COMPLIB
- imake /S $(TARGET) >> $(LIBLOG)
- cd ..\CTYPE
- imake /S $(TARGET) >> $(LIBLOG)
- cd ..\DATA
- imake /S $(TARGET) >> $(LIBLOG)
- cd ..\IO
- imake /S $(TARGET) >> $(LIBLOG)
- cd ..\MATH
- imake /S $(TARGET) >> $(LIBLOG)
- cd ..\PROCONT
- imake /S $(TARGET) >> $(LIBLOG)
- cd ..\SORT
- imake /S $(TARGET) >> $(LIBLOG)
- cd ..\STARTUP
- imake /S $(TARGET) >> $(LIBLOG)
- cd ..\STRING
- imake /S $(TARGET) >> $(LIBLOG)
- cd ..\TIME
- imake /S $(TARGET) >> $(LIBLOG)
- cd ..\object
- del $(TARGNAME).lib
- $(LIB) $(TARGNAME) @$(LIBLIST) >> $(LIBLOG)
- cd ..