PersonalVotingMachine/basic-setup/components/u8g2/sys/sdl/text_scrolling/Makefile

13 lines
272 B
Makefile
Raw Permalink Normal View History

2020-12-22 14:30:09 +02: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)
$(CC) $(CFLAGS) $(LDFLAGS) $(OBJ) `sdl2-config --libs` -o u8g2_sdl
clean:
-rm $(OBJ) u8g2_sdl