home *** CD-ROM | disk | FTP | other *** search
Makefile | 1994-05-29 | 516 b | 20 lines |
- # Project: StrLib
-
- .SUFFIXES: .c .s .o
- CC = cc
- CCflags = -c -IDeskLib:,C: $(x_cflags)
- ObjAsmflags = -Stamp -NoCache -CloseExec -Quit $(x_aflags)
-
-
- Files = o.DecodeHex o.LeafName o.MakeASCIIZ o.MakeCR o.MakeHex \
- o.strcmpcr o.strcatcr o.strcpycr o.strdup o.stricmp \
- o.stricmpcr o.strlencr o.strncpycr o.strnicmp o.strnicmpcr
-
-
- StrLib: $(Files)
- $(do)
-
- .c.o:; $(CC) $(CCflags) $< -o $@
-
- .s.o:; objasm $(ObjAsmflags) -from $< -to $@
-