u8g2-copy/sys/sdl/text_strwidth/Makefile

13 lines
272 B
Makefile
Raw Normal View History

2018-02-21 06:00:54 +08:00
CFLAGS = -g -Wall -I../../../csrc/. `sdl2-config --cflags`
SRC = $(shell ls ../../../csrc/*.c) $(shell ls ../common/*.c ) main.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
clean:
-rm $(OBJ) u8g2_sdl