mirror of
https://github.com/weiju/amiga-stuff
synced 2025-12-08 14:58:33 +00:00
added audio and scrolling_tricks
This commit is contained in:
20
scrolling_tricks/Makefile
Normal file
20
scrolling_tricks/Makefile
Normal file
@ -0,0 +1,20 @@
|
||||
ASM=vasmm68k_mot
|
||||
ASM_FLAGS = -Fhunk -devpac
|
||||
.SUFFIXES = .o .asm .c
|
||||
|
||||
CC=vc +kick13
|
||||
CFLAGS=-c99 -I$(NDK_INC) -DDEBUG
|
||||
|
||||
all: main
|
||||
|
||||
clean:
|
||||
rm -f main hardware.o cop.o main.o
|
||||
|
||||
cop.o: cop.asm
|
||||
$(ASM) $(ASM_FLAGS) -o $@ $<
|
||||
|
||||
.c.o:
|
||||
$(CC) $(CFLAGS) -c -o $@ $^
|
||||
|
||||
main: hardware.o cop.o main.o
|
||||
$(CC) -o $@ $^ -lamiga -lauto
|
||||
Reference in New Issue
Block a user