home *** CD-ROM | disk | FTP | other *** search
Makefile | 1993-12-21 | 973 b | 47 lines |
- ######################################################################
- #
- # smakefile to build ClockTool
- #
- # GMD - Oct 93
- #
- #
- # SAS/C 6.3
- #
- ######################################################################
-
-
- O=O/
- SO=ObjectName=$(O) noIcons
-
- ##SF=debug=sf
- SF=
-
- INCS = ClockTool.h typedefs.h ClockTool_protos.h
- OBJS = $(O)ClockTool.o
-
- ClockTool : $(OBJS) $(INCS)
- slink FROM lib:c.o $(OBJS) TO ClockTool LIB lib:sc.lib \
- lib:amiga.lib noIcons quiet
- # slink ClockTool.exe TO ClockTool NODEBUG noicons quiet
- # @C:Filenote $(O)\#?.o NOBACKUP QUIET
- # @C:Filenote ClockTool.exe NOBACKUP QUIET
-
- $(O)ClockTool.o : ClockTool.c $(INCS)
- sc $(SF) nover $(SO) ClockTool
-
- clean:
- delete ClockTool $(OBJS) >nil:
-
- indent:
- indent -gnu ClockTool.c
-
- protos:
- sc novers genprotos ClockTool.c
- @Delete ClockTool_protos.h.info >nil:
-
- all: indent protos ClockTool
-
- archive:
- lha -r a clocktool.lha $(INCS) ClockTool ClockTool.c \
- smakefile \#?.h README O/.mkdate
-