u8g2-copy/sys/sdl/menu/Makefile

13 lines
293 B
Makefile
Raw Normal View History

2017-04-20 05:43:28 +08:00
CFLAGS = -g -Wall -I../../../csrc/. `sdl-config --cflags`
2017-04-23 23:09:17 +08:00
SRC = $(shell ls ../../../csrc/*.c) $(shell ls ../common/*.c ) main.c menu.c gui.c datecalc.c
2017-04-20 05:43:28 +08:00
OBJ = $(SRC:.c=.o)
helloworld: $(OBJ)
$(CC) $(CFLAGS) $(LDFLAGS) $(OBJ) `sdl-config --libs` -o u8g2_sdl
clean:
-rm $(OBJ) u8g2_sdl