aboutsummaryrefslogtreecommitdiff
path: root/unittest/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'unittest/Makefile')
-rw-r--r--unittest/Makefile28
1 files changed, 0 insertions, 28 deletions
diff --git a/unittest/Makefile b/unittest/Makefile
deleted file mode 100644
index 6e504e8..0000000
--- a/unittest/Makefile
+++ /dev/null
@@ -1,28 +0,0 @@
-CC = $(PREFIX)-gcc
-CXX = $(PREFIX)-g++
-LD = $(CXX)
-
-INCLUDE = -I../include
-LIB = -L../build
-LDLIBS = -lhidapi-libusb -lnitrokey
-BUILD = build
-
-CXXFLAGS = -std=c++14 -fPIC
-
-CXXSOURCES = $(wildcard *.cc)
-TARGETS = $(CXXSOURCES:%.cc=$(BUILD)/%)
-
-$(BUILD)/%: %.cc
- $(CXX) $< -o $@ $(INCLUDE) $(LIB) $(CXXFLAGS) $(LDLIBS)
-
-all: $(TARGETS)
-
-clean:
- rm -f $(TARGETS)
-
-mrproper: clean
- rm -f $(BUILD)/*.d
-
-.PHONY: all clean mrproper
-
-include $(wildcard build/*.d)