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
280 B
13 lines
280 B
6 years ago
|
CFLAGS = -g -Wall -I../../../csrc/. `sdl2-config --cflags`
|
||
|
|
||
|
SRC = $(shell ls ../../../csrc/*.c) $(shell ls ../common/*.c ) $(shell ls *.c)
|
||
|
|
||
|
OBJ = $(SRC:.c=.o)
|
||
|
|
||
|
helloworld: $(OBJ)
|
||
|
$(CC) $(CFLAGS) $(LDFLAGS) $(OBJ) `sdl2-config --libs` -o u8g2_sdl
|
||
|
|
||
|
clean:
|
||
|
-rm $(OBJ) u8g2_sdl
|
||
|
|