mirror of
https://github.com/Valeh2012/PersonalVotingMachine
synced 2025-12-08 10:05:12 +02:00
first commit
This commit is contained in:
15
basic-setup/components/u8g2/sys/stdio/Makefile
Normal file
15
basic-setup/components/u8g2/sys/stdio/Makefile
Normal file
@@ -0,0 +1,15 @@
|
||||
CFLAGS = -I../../csrc -g -Wall
|
||||
#CFLAGS = -O4 -Wall
|
||||
|
||||
SRC = $(shell ls ../../csrc/*.c 2>/dev/null) test.c
|
||||
|
||||
OBJ = $(SRC:.c=.o)
|
||||
|
||||
stdio: $(OBJ)
|
||||
$(CC) $(CFLAGS) $(LDFLAGS) $(OBJ) -o stdio
|
||||
|
||||
clean:
|
||||
-rm $(OBJ) stdio
|
||||
|
||||
test:
|
||||
./stdio
|
||||
Reference in New Issue
Block a user