home *** CD-ROM | disk | FTP | other *** search
Makefile | 1995-02-15 | 1.2 KB | 48 lines |
- # Compiling for SAS/C 6.5x
-
- START = LIB:c.o SDEV:sas/lib/start.o
- LFLG = SC SD ND BATCH NOICONS
- LIBS = SDEV:sas/lib/scan.lib+LIB:sc.lib+LIB:amiga.lib
-
- all: Antique Sample1 Sample2 GedSample GedSample2
-
- Antique: antique.o
- Slink $(LFLG) FROM $(START) antique.o TO Antique LIB $(LIBS)
-
- Sample1: sample1.o
- Slink $(LFLG) FROM $(START) sample1.o TO Sample1 LIB $(LIBS)
-
- sample1.o: sample1.c
- rev $*.c
- sc $(CFLAGS) $*.c
-
- Sample2: sample2.o
- Slink $(LFLG) FROM $(START) sample2.o TO Sample2 LIB $(LIBS)
-
- sample2.o: sample2.c
- rev $*.c
- sc $(CFLAGS) $*.c
-
- GedSample: gedsample.o
- Slink $(LFLG) FROM $(START) gedsample.o TO GedSample LIB $(LIBS)
-
- gedsample.o: gedsample.c gedsample_strings.h
- rev $*.c
- sc $(CFLAGS) $*.c
-
- gedsample_strings.h: gedsample.str
- str -h -e -ogedsample_strings.h GedSample.str
- str -h -a -ogedsample_strings.h GedSample.str
-
- GedSample2: gedsample2.o
- Slink $(LFLG) FROM $(START) gedsample2.o TO GedSample2 LIB $(LIBS)
-
- gedsample2.o: gedsample2.c gedsample2_strings.h
- rev $*.c
- sc $(CFLAGS) $*.c
-
- gedsample2_strings.h: gedsample2.str
- str -h -e -ogedsample2_strings.h GedSample2.str
- str -h -a -ogedsample2_strings.h GedSample2.str
-
-