home *** CD-ROM | disk | FTP | other *** search
Makefile | 1994-10-22 | 374 b | 19 lines |
- # Project: PointerLib
-
- .SUFFIXES: .c .s .o
- CC = cc
- CCflags = -c -IDeskLib:,C: $(x_cflags)
- ObjAsmflags = -Stamp -NoCache -CloseExec -Quit $(x_aflags)
- Linkflags = -o $@
- LibFileflags = -c -o $@
-
-
- Files = o.Restrict
-
-
- PointerLib: $(Files)
- $(do)
-
- .c.o:; $(CC) $(CCflags) $< -o $@
- .s.o:; objasm $(ObjAsmflags) -from $< -to $@
-