Subversion Repositories libOLED

Rev

Rev 3 | Rev 7 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 3 Rev 4
Line 5... Line 5...
5
INCLUDES += -I$(OLED_INC)
5
INCLUDES += -I$(OLED_INC)
6
 
6
 
7
OLED_OBJECTS += $(OLED_OBJ)/fontclass.o
7
OLED_OBJECTS += $(OLED_OBJ)/fontclass.o
8
OLED_OBJECTS += $(OLED_OBJ)/displayclass.o
8
OLED_OBJECTS += $(OLED_OBJ)/displayclass.o
9
OLED_OBJECTS += $(OLED_OBJ)/displayFont.o
9
OLED_OBJECTS += $(OLED_OBJ)/displayFont.o
-
 
10
OLED_OBJECTS += $(OLED_OBJ)/displayDial.o
10
OLED_OBJECTS += $(OLED_OBJ)/stm32_halDisplay.o
11
OLED_OBJECTS += $(OLED_OBJ)/stm32_halDisplay.o
-
 
12
OLED_OBJECTS += $(OLED_OBJ)/ap_math.o
11
 
13
 
12
 
14
 
13
C_OBJECTS += $(OLED_OBJECTS)
15
C_OBJECTS += $(OLED_OBJECTS)
14
 
16
 
15
$(OLED_OBJ)/%.o: $(OLED_SRC)/%.c $(DEPENDS)
17
$(OLED_OBJ)/%.o: $(OLED_SRC)/%.c $(DEPENDS)
Line 19... Line 21...
19
	$(CPP) $(CPPFLAGS)   $< -o $@
21
	$(CPP) $(CPPFLAGS)   $< -o $@
20
 
22
 
21
CPP_SOURCES += $(OLED_SRC)/fontclass.cpp
23
CPP_SOURCES += $(OLED_SRC)/fontclass.cpp
22
CPP_SOURCES += $(OLED_SRC)/displayclass.cpp
24
CPP_SOURCES += $(OLED_SRC)/displayclass.cpp
23
CPP_SOURCES += $(OLED_SRC)/displayFont.cpp
25
CPP_SOURCES += $(OLED_SRC)/displayFont.cpp
-
 
26
CPP_SOURCES += $(OLED_SRC)/displayDial.cpp
24
CPP_SOURCES += $(OLED_SRC)/stm32_halDisplay.cpp
27
CPP_SOURCES += $(OLED_SRC)/stm32_halDisplay.cpp
-
 
28
CPP_SOURCES += $(OLED_SRC)/ap_math.cpp
25
 
29
 
26
C_INCLUDES += $(INCLUDES) 
30
C_INCLUDES += $(INCLUDES) 
27
 
31