mirror of
https://github.com/Valeh2012/PersonalVotingMachine
synced 2025-12-14 20:35:11 +02:00
first commit
This commit is contained in:
12
basic-setup/components/u8g2/sys/bitmap/hello_world/Makefile
Normal file
12
basic-setup/components/u8g2/sys/bitmap/hello_world/Makefile
Normal file
@@ -0,0 +1,12 @@
|
||||
CFLAGS = -g -Wall -I../../../csrc/.
|
||||
|
||||
SRC = $(shell ls ../../../csrc/*.c) $(shell ls ../common/u8x8_d_bitmap.c ) main.c
|
||||
|
||||
OBJ = $(SRC:.c=.o)
|
||||
|
||||
hello_world: $(OBJ)
|
||||
$(CC) $(CFLAGS) $(LDFLAGS) $(OBJ) -o $@
|
||||
|
||||
clean:
|
||||
-rm -f $(OBJ) hello_world *.tga
|
||||
|
||||
Reference in New Issue
Block a user