1
0
mirror of https://github.com/rkujawa/rk65c02.git synced 2024-12-12 10:30:23 +00:00
rk65c02/test/Makefile

12 lines
166 B
Makefile
Raw Normal View History

2017-01-16 21:54:51 +00:00
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 $<