source: cfg_itronx+oil_gcc/toppers/itronx/Makefile@ 54

Last change on this file since 54 was 54, checked in by ertl-ishikawa, 12 years ago

cfg+oil対応コンフィギュレータを追加

File size: 503 bytes
RevLine 
[54]1-include ../Makefile.config
2
3PROJDIR = ../..
4WORKDIR = $(PROJDIR)/toppers/itronx
5
6CPPFLAGS := $(CPPFLAGS) -I$(BOOST_DIR) -I$(PROJDIR)
7CXXFLAGS := $(CXXFLAGS) -O2 -g
8
9CXXFILES = \
10 cfg1_out.cpp \
11 checker.cpp \
12 component.cpp \
13 factory.cpp \
14 preprocess.cpp \
15 static_api.cpp
16
17OBJFILES := $(CXXFILES:%.cpp=%.o)
18
19all: libitronx.a
20
21libitronx.a: $(OBJFILES)
22 $(AR) rcs libitronx.a $(OBJFILES)
23
24depend:
25 $(CXX) $(CPPFLAGS) -M $(CXXFILES) > Makefile.depend
26
27clean:
28 -rm -f *.o *.a
29
30-include Makefile.depend
31
Note: See TracBrowser for help on using the repository browser.