u8g2-copy/sys/sdl/clock/Makefile

13 lines
280 B
Makefile
Raw Normal View History

2018-02-21 06:00:54 +08:00
CFLAGS = -g -Wall -I../../../csrc/. `sdl2-config --cflags`
2017-04-30 18:08:44 +08:00
SRC = $(shell ls ../../../csrc/*.c) $(shell ls ../common/*.c ) $(shell ls *.c)
OBJ = $(SRC:.c=.o)
helloworld: $(OBJ)
2018-02-21 06:00:54 +08:00
$(CC) $(CFLAGS) $(LDFLAGS) $(OBJ) `sdl2-config --libs` -o u8g2_sdl
2017-04-30 18:08:44 +08:00
clean:
-rm $(OBJ) u8g2_sdl