Remove legacy build system

This commit is contained in:
baldurk 2015-11-16 23:51:35 +01:00
parent 876a0e392e
commit 5100d5603f
18 changed files with 0 additions and 3285 deletions

View file

@ -1,25 +0,0 @@
INCLUDE = -I../
CXXFLAGS=$(DEFINE) $(INCLUDE) -fPIC
SRCS := PpAtom.cpp PpScanner.cpp PpTokens.cpp Pp.cpp PpContext.cpp PpMemory.cpp PpSymbols.cpp
OBJECTS := $(SRCS:.cpp=.o)
DEPS := $(addprefix ., $(SRCS:.cpp=.d))
all : libPreprocessor.a
libPreprocessor.a : $(OBJECTS)
$(AR) rvu $@ $(OBJECTS)
ranlib $@
-include $(DEPS)
%.o : %.cpp
$(CXX) $(CXXFLAGS) -MMD -MP -MF $(addprefix ., $(<:.cpp=.d)) -c -o $@ $<
#
# Cleanup
#
.PHONY : clean
clean :
$(RM) *.o *.a