summaryrefslogtreecommitdiff
path: root/performance-tests
diff options
context:
space:
mode:
authorlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1997-07-18 02:16:22 +0000
committerlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1997-07-18 02:16:22 +0000
commit8cbf1cf52b44fb0299ffc48c1b5b40cf3183c0ae (patch)
treed5e91cccf7309be9a29854d1c7985b475a6eadd5 /performance-tests
parenteef581e1cf489d1cca74d29c54cd75da04eed4a9 (diff)
downloadATCD-8cbf1cf52b44fb0299ffc48c1b5b40cf3183c0ae.tar.gz
added LOBJ and SHOBJ definitions
Diffstat (limited to 'performance-tests')
-rw-r--r--performance-tests/Misc/Makefile9
1 files changed, 6 insertions, 3 deletions
diff --git a/performance-tests/Misc/Makefile b/performance-tests/Misc/Makefile
index c60ab4a1d54..01253dfbf7f 100644
--- a/performance-tests/Misc/Makefile
+++ b/performance-tests/Misc/Makefile
@@ -17,9 +17,12 @@ BIN = basic_perf \
# Only build static library for optimum run-time speed.
LIB = libPerf.a
-SRC = $(addsuffix .cpp,$(BIN))
-OBJ = $(SRC:%.cpp=$(VDIR)%.o)
-LSRC = basic_func.cpp
+FILES = basic_func
+
+LSRC = $(addsuffix .cpp,$(FILES))
+LOBJ = $(addsuffix .o,$(FILES))
+SHOBJ = $(addsuffix .so,$(FILES))
+
LDLIBS = -lPerf
VLDLIBS = $(LDLIBS:%=%$(VAR))