Makefile
changeset 178 1622dc05c6ca
parent 159 1e4eb0d48385
child 181 38d6eb056260
equal deleted inserted replaced
177:697562a5da7c 178:1622dc05c6ca
    27 	find . -depth -mindepth 2 -maxdepth 2 -name Makefile -printf %h\\n | xargs -i make -C{} $@
    27 	find . -depth -mindepth 2 -maxdepth 2 -name Makefile -printf %h\\n | xargs -i make -C{} $@
    28 
    28 
    29 CXXFLAGS += -I.
    29 CXXFLAGS += -I.
    30 
    30 
    31 LIBS  = absyntax/absyntax.o absyntax/visitor.o
    31 LIBS  = absyntax/absyntax.o absyntax/visitor.o
    32 LIBS += stage1_2/stage1_2.o stage1_2/iec.y.o stage1_2/iec.flex.o 
    32 LIBS += stage1_2/stage1_2.o stage1_2/iec.y.o stage1_2/iec.flex.o search_utils/search_utils.o 
    33 
    33 
    34 iec2c: main.o stage4/generate_c/generate_c.o stage4/stage4.o $(LIBS)
    34 iec2c: main.o stage4/generate_c/generate_c.o stage4/stage4.o $(LIBS)
    35 	$(CXX) -o iec2c main.o stage4/stage4.o stage4/generate_c/generate_c.o $(LIBS)
    35 	$(CXX) -o iec2c main.o stage4/stage4.o stage4/generate_c/generate_c.o $(LIBS)
    36 
    36 
    37 
    37