1
0
mirror of https://github.com/rkujawa/rk65c02.git synced 2024-06-26 04:29:27 +00:00
rk65c02/test/Makefile
2017-01-16 22:54:51 +01:00

12 lines
166 B
Makefile

CFLAGS=-Wall -I../src
LDFLAGS=-L../src/ -latf-c -lrk65c02
#-Wl,-R../src/
test_bus : test_bus.o
$(CC) -o test_bus $(LDFLAGS) $<
%.o : %.c
$(CC) $(CFLAGS) -c $<