mirror of
https://github.com/rkujawa/rk65c02.git
synced 2024-12-12 10:30:23 +00:00
11 lines
151 B
Makefile
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 $<
|
|
|
|
|