summaryrefslogtreecommitdiffhomepage
path: root/tests/Makefile
diff options
context:
space:
mode:
authorRoland Reichwein <mail@reichwein.it>2023-01-02 17:38:35 +0100
committerRoland Reichwein <mail@reichwein.it>2023-01-02 17:38:35 +0100
commit20ceb53ec1c1bc18face8e831292dfe81fed3817 (patch)
treea1107d98cf8699b28ef6034c09567f39c68b160b /tests/Makefile
parent0851f92abcb1e9d84c2748607ff8d548b582540c (diff)
Separated out libreichwein (file.cpp)
Diffstat (limited to 'tests/Makefile')
-rw-r--r--tests/Makefile5
1 files changed, 1 insertions, 4 deletions
diff --git a/tests/Makefile b/tests/Makefile
index 4ade005..057eae9 100644
--- a/tests/Makefile
+++ b/tests/Makefile
@@ -11,7 +11,7 @@ CXXFLAGS+=--coverage
LDFLAGS+=--coverage
endif
-UNITS=storage.cpp config.cpp file.cpp compiledsql.cpp qrcode.cpp whiteboard.cpp
+UNITS=storage.cpp config.cpp compiledsql.cpp qrcode.cpp whiteboard.cpp
UNITTESTS=test-config.cpp \
test-storage.cpp
@@ -47,9 +47,6 @@ unittests: libgmock.a $(UNITTESTS:.cpp=.o) $(UNITS:.cpp=.o)
config.o: ../config.cpp
$(CXX) $(CXXFLAGS) -o $@ -c $<
-file.o: ../file.cpp
- $(CXX) $(CXXFLAGS) -o $@ -c $<
-
storage.o: ../storage.cpp
$(CXX) $(CXXFLAGS) -o $@ -c $<