Skip to content
Snippets Groups Projects
Commit 615d9b08 authored by whh8b's avatar whh8b
Browse files

Delete Makefile from repository.

Former-commit-id: a45b2431ea1b3c08af43eade21d805f56ef4737b
parent 28524968
No related branches found
No related tags found
No related merge requests found
......@@ -573,7 +573,6 @@ tools/cover/Makefile -text
tools/cover/cover.cpp -text
tools/cover/coverage.cpp -text
tools/cover/coverage.h -text
tools/fix_rets/Makefile -text
tools/fix_rets/Makefile.in -text
tools/fix_rets/fix_rets.cpp -text
tools/fix_rets/fix_rets.hpp -text
......
PROGS=fix_rets.exe
CXX=g++
CXXFLAGS=
INCLUDE=-I. -I../include -I../xform -I../../beaengine/include -I../../libIRDB/include/ -I../../libMEDSannotation/include/ -I../libtransform/include/ -I../transforms
CXXFLAGS= $(INCLUDE) -Wall
LIBS=-L../../lib -lxform -lIRDB-core -lIRDB-cfg -lBeaEngine_s_d -lpqxx -lMEDSannotation -ltransform# ../transforms/Rewrite_Utility.o
OBJS=fix_rets.o fix_rets_driver.o
programs=fix_rets.exe
.SUFFIXES: .o .c .exe .cpp .hpp
all: $(programs)
@echo "---------------------------------------------"
@echo "- Fix Rets directory -- Build complete -"
@echo "---------------------------------------------"
-include $(OBJS:.o=.d)
%.o: %.cpp
$(CXX) -c $(CXXFLAGS) $*.cpp
@#
@# build dependencies -- http://scottmcpeak.com/autodepend/autodepend.html
@#
$(CXX) -MM $(CXXFLAGS) $*.cpp > $*.d
@cp -f $*.d $*.d.tmp
@sed -e 's/.*://' -e 's/\\$$//' < $*.d.tmp | fmt -1 | sed -e 's/^ *//' -e 's/$$/:/' >> $*.d
@rm -f $*.d.tmp
clean:
rm -f *.o core *.exe
$(programs): ../../lib/*.a
fix_rets.exe: $(OBJS)
$(CXX) $(CXXFLAGS) $^ $(INCLUDE) $(LIBS) -o $@
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment