From 38a0d7247842ee9c2dc1ec70b3cd50111b15d814 Mon Sep 17 00:00:00 2001 From: Szczepan Zalega Date: Tue, 19 Apr 2016 13:00:45 +0200 Subject: Revert "Minor fixes, working version" This reverts commit 3bb6c38ed17c2cf0d2f68bb64fbd24737c4a6677. --- unittest/Makefile | 28 ---------------------------- 1 file changed, 28 deletions(-) delete mode 100644 unittest/Makefile (limited to 'unittest/Makefile') 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) -- cgit v1.2.1