aboutsummaryrefslogtreecommitdiffstats
path: root/src/build-data/makefile/unix.in
diff options
context:
space:
mode:
Diffstat (limited to 'src/build-data/makefile/unix.in')
-rw-r--r--src/build-data/makefile/unix.in6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/build-data/makefile/unix.in b/src/build-data/makefile/unix.in
index 4eda9d5c9..1f8eaac2d 100644
--- a/src/build-data/makefile/unix.in
+++ b/src/build-data/makefile/unix.in
@@ -41,15 +41,15 @@ RM = @rm -f
RM_R = @rm -rf
# Targets
+TEST = %{test_prefix}test
LIBRARIES = $(STATIC_LIB)
LIBNAME = %{lib_prefix}libbotan
STATIC_LIB = $(LIBNAME)-$(SERIES).a
-all: $(LIBRARIES)
+all: $(TEST)
# File Lists
-TEST = %{test_prefix}test
HEADERS = %{include_files}
@@ -63,8 +63,6 @@ TESTOBJS = %{test_objs}
%{test_build_cmds}
# Link Commands
-check: $(TEST)
-
$(TEST): $(LIBRARIES) $(TESTOBJS)
$(CXX) $(TESTOBJS) $(STATIC_LIB) $(LINK_TO) -o $(TEST)