u8g2-copy/sys/tga/hello_world_8x8/Makefile

13 lines
283 B
Makefile
Raw Normal View History

2018-02-21 06:00:54 +08:00
CFLAGS = -g -Wall -I../../../csrc/. `sdl2-config --cflags` -DU8G2_16BIT
2015-11-07 04:07:14 +08:00
SRC = $(shell ls ../../../csrc/*.c) $(shell ls ../common/*.c ) main.c
OBJ = $(SRC:.c=.o)
u8g2_tga: $(OBJ)
2018-02-21 06:00:54 +08:00
$(CC) $(CFLAGS) $(LDFLAGS) $(OBJ) `sdl2-config --libs` -o u8g2_tga
2015-11-07 04:07:14 +08:00
clean:
-rm $(OBJ) u8g2_tga