1
0
mirror of https://github.com/rkujawa/rk65c02.git synced 2024-09-27 13:55:23 +00:00
rk65c02/test/Makefile
2017-01-16 23:54:46 +01:00

11 lines
151 B
Makefile

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