This repository has been archived on 2024-07-04. You can view files and clone it, but cannot push or open issues or pull requests.
2008-09-03 00:07:30 +02:00
|
|
|
# basic Makefile to simplify testing of the ay8910 code
|
|
|
|
|
|
|
|
all: ay8910test
|
|
|
|
|
2008-11-28 22:50:56 +01:00
|
|
|
ay8910test: ay8910.o sound.o sndintrf.o
|
|
|
|
gcc -o ay8910test sound.o ay8910.o sndintrf.o -lSDL
|
|
|
|
|
|
|
|
ay8910.o: ay8910.c
|
|
|
|
gcc -c -Wall ay8910.c
|
|
|
|
|
|
|
|
sound.o: sound.c
|
|
|
|
gcc -c -Wall sound.c
|
|
|
|
|
|
|
|
#streams.o: streams.c
|
|
|
|
# gcc -c -Wall streams.c
|
|
|
|
|
|
|
|
sndintrf.o: sndintrf.c
|
|
|
|
gcc -c -Wall sndintrf.c
|
|
|
|
|
|
|
|
|
|
|
|
.PHONY clean:
|
|
|
|
rm ay8910test *.o
|