home *** CD-ROM | disk | FTP | other *** search
Makefile | 1993-12-26 | 654 b | 43 lines |
- ######################################################################
- #
- # smakefile to build Flush
- #
- # GMD - 17 Dec 93
- #
- #
- # SAS/C 6.3
- #
- ######################################################################
-
- #SF=debug=sf
- SF=
-
- O=O/
-
- SO=ObjectName=$(O) noIcons
-
- PROTOS=Flush_protos.h
-
- OBJS = $(O)Flush.o
-
- Flush : $(OBJS)
- slink FROM lib:c.o $(OBJS) TO Flush LIB lib:sc.lib \
- lib:amiga.lib noIcons quiet
-
- $(O)Flush.o : Flush.c
- sc nover $(SF) $(SO) Flush
-
- all: indent Flush
-
- clean:
- Delete Flush $(OBJS) $(PROTOS) >nil:
-
- indent: Flush.c
- indent -gnu Flush.c
-
- protos:
- sc nover genprotos Flush.c
- @Delete Flush_protos.h.info >nil:
-
-
-