You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
# |
|
# 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 |
|
|