summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrea Canciani <ranma42@gmail.com>2013-03-07 19:24:00 +0100
committerAndrea Canciani <ranma42@gmail.com>2013-03-07 19:33:05 +0100
commit2593a200c47106763179c94e40b337c18cb7b86e (patch)
treee9631b21a4df962b3cd0e1b29f0ebdbe8b5245cd
parentf4d216a663112df3a01c292899316ac235d19cd1 (diff)
Cleanup makefiles
Minor cleanup in the Makefiles, which makes the naming more specific ("*simpleops-test*" instead of "simpleops").
-rw-r--r--Makefile.am12
-rw-r--r--Makefile.win324
2 files changed, 8 insertions, 8 deletions
diff --git a/Makefile.am b/Makefile.am
index a176cef..28677eb 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -2,14 +2,14 @@ include Makefile.common
# Naming convention:
#
-# simpleops-*-base are executable binaries (with default dependency handling)
-# simpleops-*-base-nodep are executable binaries (without dependency handling)
+# simpleops-test*-base are executable binaries (with default dependency handling)
+# simpleops-test*-base-nodep are executable binaries (without dependency handling)
#
-# simpleops-*static-base* link libsimpleops-test-static.a
+# simpleops-test*-static-base* link libsimpleops-test-static.a
#
-# simpleops-dynamic-*base* link libsimpleops-test-dynamic.so
-# simpleops-statdyn-*base* link libsimpleops-test-statdyn.so
-# simpleops-statdynnodep-*base* link libsimpleops-test-statdynnodep.so
+# simpleops-test-dynamic-*base* link libsimpleops-test-dynamic.so
+# simpleops-test-statdyn-*base* link libsimpleops-test-statdyn.so
+# simpleops-test-statdynnodep-*base* link libsimpleops-test-statdynnodep.so
#
#
# libsimpleops-test-static.a is a standalone static library
diff --git a/Makefile.win32 b/Makefile.win32
index 2044b85..ae223f0 100644
--- a/Makefile.win32
+++ b/Makefile.win32
@@ -59,10 +59,10 @@ perf: simpleops-test-perf.exe
simpleops-test-perf.obj: simpleops-test-perf.c *.h
@$(CC) $(CFLAGS) -c -Fo"$@" $<
-simpleops-%.obj: simpleops-test-base.c *.h
+simpleops-test-%.obj: simpleops-test-base.c *.h
@$(CC) $(CFLAGS) $(call nametodefs,$@) -c -Fo"$@" $<
-libsimpleops-%.obj: simpleops-test-base.c *.h
+libsimpleops-test-%.obj: simpleops-test-base.c *.h
@$(CC) $(CFLAGS) $(call libnametodefs,$@) -c -Fo"$@" $<