diff options
Diffstat (limited to 'ShowIFF/Makefile')
-rw-r--r-- | ShowIFF/Makefile | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/ShowIFF/Makefile b/ShowIFF/Makefile new file mode 100644 index 0000000..0a56819 --- /dev/null +++ b/ShowIFF/Makefile @@ -0,0 +1,40 @@ +## +## $Id: makefile,v 3.3 92/12/04 00:52:19 chris Exp $ +## +## Makefile for ShowIFF (SAS/C 6.x) +## + + +#CFLAGS = DBG +AFLAGS = -iINCLUDE: -l +LFLAGS = SMALLDATA NODEBUG NOICONS MAP RAM:slink.map h,s,f,o,plain + + +.c.o: + sc $(CFLAGS) $*.c + +.S.o: + Genam $(AFLAGS) $*.S + + +All: ShowIFF + +Bump: + @Bumper $(PROJECT) + @SMake + +Clean: + @Delete *.o ShowIFF + + +############################################################################# +## $(PROJECT) + + +SI_LIBS = LIB:sc.lib LIB:amiga.lib + +ShowIFF: ArgsStartup20.o ShowIFF.o $(SI_LIBS) + SLINK $(LFLAGS) FROM ArgsStartup20.o ShowIFF.o TO $@ LIB $(SI_LIBS) + +ShowIFF.o: ShowIFF_rev.h + |