diff options
Diffstat (limited to 'MovieDecode/Makefile')
-rw-r--r-- | MovieDecode/Makefile | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/MovieDecode/Makefile b/MovieDecode/Makefile new file mode 100644 index 0000000..81fad47 --- /dev/null +++ b/MovieDecode/Makefile @@ -0,0 +1,33 @@ +# Makefile for MovieDecode and test program +# by Christian A. Weber + +ASM = Genam +AFLAGS = -iINCLUDE: -l + +CC = sc +CFLAGS = + +LD = SLINK +LFLAGS = NOICONS ADDSYM MAP RAM:SimpleTest.map + + +.c.o: + $(CC) $(CFLAGS) $*.c + +.a.o: + $(ASM) $(AFLAGS) $*.a + + +SimpleTest: SimpleTest.o MovieDecode.o + @$(LD) $(LFLAGS) FROM LIB:c.o SimpleTest.o MovieDecode.o TO $@\ + LIB LIB:sc.lib LIB:amiga.lib + +MovieDecode.doc: + Autodoc -a -C -I MovieDecode.a >MovieDecode.doc + +dist: SimpleTest MovieDecode.doc + -@Delete MovieDecode.LHA + @Lha a MovieDecode.LHA MovieDecode.a MovieDecode.doc SimpleTest.c Makefile SCOPTIONS SimpleTest + +clean: + -@Delete *.o SimpleTest MovieDecode.LHA |