Skip to content
Snippets Groups Projects
Commit b9d69a8b authored by Jan Trávníček's avatar Jan Trávníček
Browse files

fix makefile

parent 93ddc30f
No related branches found
No related tags found
No related merge requests found
......@@ -14,7 +14,7 @@ all: build test
 
 
 
lib/$(LIBRARY): obj/
lib/$(LIBRARY): obj/ $(OBJECTS)
mkdir -p lib;
$(CXX) $(OBJECTS) -o $@ $(LDFLAGS)
 
......@@ -63,7 +63,7 @@ build: lib/$(LIBRARY)
 
 
 
test-bin/$(TESTBIN): test-obj/ lib/$(LIBRARY)
test-bin/$(TESTBIN): test-obj/ lib/$(LIBRARY) $(TEST_OBJECTS)
mkdir -p test-bin;
$(CXX) $(TEST_OBJECTS) -o $@ $(TEST_LDFLAGS)
 
......
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