mirror of
https://github.com/Valeh2012/PersonalVotingMachine
synced 2025-12-10 02:35:12 +02:00
first commit
This commit is contained in:
20
basic-setup/components/u8g2/tools/codebuild/Makefile
Normal file
20
basic-setup/components/u8g2/tools/codebuild/Makefile
Normal file
@@ -0,0 +1,20 @@
|
||||
#
|
||||
# U8g2 codebuilder
|
||||
#
|
||||
|
||||
CFLAGS = -g -Wall
|
||||
#CFLAGS = -O4 -Wall
|
||||
|
||||
SRC = codebuild.c
|
||||
|
||||
OBJ = $(SRC:.c=.o)
|
||||
|
||||
codebuild: $(SRC)
|
||||
$(CC) -Wall -g $(LDFLAGS) $(SRC) -o codebuild
|
||||
|
||||
clean:
|
||||
-rm ./codebuild codebuild.o
|
||||
|
||||
build: codebuild
|
||||
./codebuild
|
||||
|
||||
Reference in New Issue
Block a user