12345678910111213141516171819 |
- #Userlib directories
- USERLIB = ./lib
- # List of all the Userlib files
- USERSRC = $(USERLIB)/st7735/st7735.c \
- $(USERLIB)/st7735/fonts.c \
- $(USERLIB)/st7735/liberation_mono_7x10.c \
- $(USERLIB)/st7735/font_12x16uk.c \
- $(USERLIB)/buttons/buttons.c
-
- # Required include directories
- USERINC = $(USERLIB) \
- $(USERLIB)/st7735 \
- $(USERLIB)/eeprom \
- $(USERLIB)/buttons
- # Shared variables
- ALLCSRC += $(USERSRC)
- ALLINC += $(USERINC)
|