1
0
mirror of https://github.com/rkujawa/rk65c02.git synced 2024-06-22 17:29:27 +00:00
rk65c02/test/Makefile

12 lines
175 B
Makefile
Raw Normal View History

2017-01-16 21:54:51 +00:00
CFLAGS=-Wall -I../src
LDFLAGS=-latf-c
RK6502LIB=../src/librk65c02.a
2017-01-16 21:54:51 +00:00
test_bus : test_bus.o
$(CC) -o test_bus $(LDFLAGS) $< $(RK6502LIB)
2017-01-16 21:54:51 +00:00
%.o : %.c
$(CC) $(CFLAGS) -c $<