1
0
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:
Wei-ju Wu
2016-06-13 08:49:14 -07:00
parent 612e9ffdd8
commit 713cf74d27
28 changed files with 1199 additions and 10 deletions

View File

@ -7,12 +7,17 @@ all: main
clean:
rm -f *.o main
main: main.o filereq.o dos13.o file_list.o
main: main.o filereq.o dos13.o file_list.o dos_compat.o
$(CC) $(CFLAGS) $^ -lamiga -lauto -o $@
check: file_list_test
check: file_list_test dos_compat_test
file_list_test: file_list.c file_list_test.c chibi.c
gcc $^ -o $@
./file_list_test
dos_compat_test: dos_compat.c dos_compat_test.c chibi.c
gcc $^ -o $@
./dos_compat_test