u8g2-copy/sys/tga/ref_man_pics_u8g2/Makefile

14 lines
301 B
Makefile
Raw Normal View History

2016-06-19 21:08:41 +08:00
CFLAGS = -g -Wall -I../../../csrc/. `sdl-config --cflags` -DU8G2_16BIT -DU8G2_REF_MAN_PIC
2015-12-28 06:06:44 +08:00
SRC = $(shell ls ../../../csrc/*.c) $(shell ls ../common/*.c ) main.c
OBJ = $(SRC:.c=.o)
u8g2_tga: $(OBJ)
$(CC) $(CFLAGS) $(LDFLAGS) $(OBJ) `sdl-config --libs` -o u8g2_tga
clean:
-rm $(OBJ) u8g2_tga