mirror of
https://github.com/Valeh2012/PersonalVotingMachine
synced 2024-11-23 01:40:58 +02:00
13 lines
308 B
Makefile
13 lines
308 B
Makefile
CFLAGS = -g -Wall -I../../../csrc/. `sdl2-config --cflags`
|
|
|
|
SRC = $(shell ls ../../../csrc/*.c) ../../bitmap/common/u8x8_d_bitmap.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
|
|
|