Subversion Repositories libOLED

Rev

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

Rev 2 Rev 3
Line 4... Line 4...
4
OLED_OBJ   = $(OBJPATH)/libOLED
4
OLED_OBJ   = $(OBJPATH)/libOLED
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)/stm32_halDisplay.o
10
OLED_OBJECTS += $(OLED_OBJ)/stm32_halDisplay.o
10
 
11
 
11
 
12
 
12
C_OBJECTS += $(OLED_OBJECTS)
13
C_OBJECTS += $(OLED_OBJECTS)
13
 
14
 
Line 17... Line 18...
17
$(OLED_OBJ)/%.o: $(OLED_SRC)/%.cpp $(DEPENDS)
18
$(OLED_OBJ)/%.o: $(OLED_SRC)/%.cpp $(DEPENDS)
18
	$(CPP) $(CPPFLAGS)   $< -o $@
19
	$(CPP) $(CPPFLAGS)   $< -o $@
19
 
20
 
20
CPP_SOURCES += $(OLED_SRC)/fontclass.cpp
21
CPP_SOURCES += $(OLED_SRC)/fontclass.cpp
21
CPP_SOURCES += $(OLED_SRC)/displayclass.cpp
22
CPP_SOURCES += $(OLED_SRC)/displayclass.cpp
-
 
23
CPP_SOURCES += $(OLED_SRC)/displayFont.cpp
22
CPP_SOURCES += $(OLED_SRC)/stm32_halDisplay.cpp
24
CPP_SOURCES += $(OLED_SRC)/stm32_halDisplay.cpp
23
 
25
 
24
C_INCLUDES += $(INCLUDES) 
26
C_INCLUDES += $(INCLUDES) 
25
 
27