You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
303 B
13 lines
303 B
CFLAGS = -g -Wall -I../../../csrc/. `sdl2-config --cflags` -DU8G2_16BIT -DU8G2_REF_MAN_PIC |
|
|
|
|
|
SRC = $(shell ls ../../../csrc/*.c) $(shell ls ../common/*.c ) main.c |
|
|
|
OBJ = $(SRC:.c=.o) |
|
|
|
u8g2_tga: $(OBJ) |
|
$(CC) $(CFLAGS) $(LDFLAGS) $(OBJ) `sdl2-config --libs` -o u8g2_tga |
|
|
|
clean: |
|
-rm $(OBJ) u8g2_tga |
|
|
|
|