mirror of
https://github.com/Valeh2012/PersonalVotingMachine
synced 2026-01-13 01:24:22 +02:00
first commit
This commit is contained in:
22
basic-setup/components/u8g2/tools/font/codesearch/Makefile
Normal file
22
basic-setup/components/u8g2/tools/font/codesearch/Makefile
Normal file
@@ -0,0 +1,22 @@
|
||||
# works within ubuntu and min-gw (win7) environment
|
||||
|
||||
CFLAGS = -g -DU8G2_USE_LARGE_FONTS -DU8G2_16BIT -Wall -I../../../csrc/
|
||||
#CFLAGS = -O4 -Wall
|
||||
|
||||
SRC2 = codesearch.c ../build/u8g2_font_list.c $(shell ls ../../../csrc/*.c)
|
||||
|
||||
OBJ2 = $(SRC2:.c=.o)
|
||||
|
||||
ASM2 = $(SRC2:.c=.s)
|
||||
|
||||
.c.s:
|
||||
$(CC) $(CFLAGS) -S -o $@ $<
|
||||
|
||||
|
||||
|
||||
codesearch: $(OBJ2)
|
||||
$(CC) $(CFLAGS) $(LDFLAGS) $(OBJ2) -o codesearch
|
||||
|
||||
clean:
|
||||
-rm $(OBJ2) $(ASM2) codesearch
|
||||
|
||||
Reference in New Issue
Block a user