home *** CD-ROM | disk | FTP | other *** search
Makefile | 1992-01-03 | 1.1 KB | 29 lines |
- #
- # list of object modules that final linked output depends upon:
- #
- OBJ1 = OBJS/negative.o
-
- #
- # Object for function, depends upon its own source code
- # -----------------------------------------------------
- # Compiler flags:
- # -O Global Optomizer is used
- # -v No stack checking
- # -d0 No DEBUG hunks
- # -b0 Use 32 bit code (change this to b1 for 16 bit code)
- # -oobjs/#?.o Put output object in subdir called "objs" (separate from src)
- # - $* Just inserts file name for compiler
- #
- OBJS/negative.o : negative.c
- lc:lc -O -v -d0 -b0 -oobjs/$*.o - $*
-
- #
- # Final link control; uses text file "negative_list" to control object used
- # if you were to change to the 'b1' option, you'd also need to change the
- # library "LCNB.lib" to "LC.lib" - this is the 16 bit library. For compiles
- # under AmigaDOS 2.0, you would change the "AMIGA.lib" to "AMIGA2.0.lib".
- # Note that the linked output goes to the c: assigned location.
- #
- negative : $(OBJ1)
- blink WITH negative_List LIBRARY LIB:LCM.lib+LIB:LCNB.lib+LIB:AMIGA.lib TO c:negative VERBOSE NODEBUG
-