home *** CD-ROM | disk | FTP | other *** search
Makefile | 1993-07-14 | 291 b | 14 lines |
- # Project: ListLib
-
- .SUFFIXES: .c .o
- CC = cc
- CCflags = -c -IDeskLib:,C: $(x_cflags)
-
- Files = o.AddToHead o.AddToTail o.InList o.InsertA o.InsertB \
- o.ListLength o.Unlink
-
- ListLib: $(Files)
- $(do)
-
- .c.o:; $(CC) $(CCflags) $< -o $@
-