home *** CD-ROM | disk | FTP | other *** search
Makefile | 1996-09-27 | 615 b | 26 lines |
- # ClipTool smakefile for SAS/C 6.50
-
- #OPTIM = opt
- OPTIM =
- COPTS = gst=cliptool.gst nominc nostkchk strmer nover $(OPTIM)
- LOPTS = scode sdata stripdbg nover nocheckabort
- OBJ = main.o handleevents.o gui.o imagegads.o buffers.o
-
- .c.o:
- sc $*.c $(COPTS)
-
- ClipTool: $(OBJ)
- sc link $(OBJ) pname ClipTool $(LOPTS)
-
- cliptool.gst: cliptool.h
- sc noobjname makegst=cliptool.gst cliptool.h $(COPTS)
-
- clean:
- -delete force \#?.o cliptool.lnk cliptool.gst
-
- main.o: main.c cliptool.gst
- handleevents.o: handleevents.c cliptool.gst
- gui.o: gui.c cliptool.gst
- imagegads.o: imagegads.c cliptool.gst
- buffers.o: buffers.c cliptool.gst
-