dashboard
repositories
filestore
activity
search
login
main
/
DocComp
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
Fixed makefile such that final linking isnt redone. Still need to ensure bu...
Joel Grunbaum
2021-07-22
be3e40aa40ba12262aba550b2bab6a69e8b4db2e
[DocComp.git]
/
parsers
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
_OBJS-par=tester.o
export OBJS-par=$(patsubst %,$(BUILD_DIR)/parsers/%,$(_OBJS-par))
default: $(OBJS-par)
$(BUILD_DIR)/parsers/%.o: %.cpp $(BUILD_DIR)/parsers
$(CXX) -c $(CXXFLAGS) -o $@ $<
$(BUILD_DIR)/parsers:
mkdir -p $@