7 lines
123 B
Makefile
7 lines
123 B
Makefile
# basic Makefile to simplify testing of the ay8910 code
|
|
|
|
all: ay8910test
|
|
|
|
ay8910test: ay8910.c
|
|
gcc -o ay8910test ay8910.c
|