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 23:56:10 +01:00

12 lines
175 B
Makefile

CFLAGS=-Wall -I../src
LDFLAGS=-latf-c
RK6502LIB=../src/librk65c02.a
test_bus : test_bus.o
$(CC) -o test_bus $(LDFLAGS) $< $(RK6502LIB)
%.o : %.c
$(CC) $(CFLAGS) -c $<