aboutsummaryrefslogtreecommitdiff
path: root/src/Makefile
diff options
context:
space:
mode:
authorThomas O Fredericks <mrtof@users.sourceforge.net>2010-10-11 17:28:35 +0000
committerThomas O Fredericks <mrtof@users.sourceforge.net>2010-10-11 17:28:35 +0000
commit6227df40e7c82b5bf90066666da22df072a0759b (patch)
tree0b099f94264f3f0bf97dd639b2ba6d64553e9a82 /src/Makefile
parent5dcb78f2706f958ab6501f33f89a2c74698d288b (diff)
open_help now has an argument and reacts to mouse clicks
svn path=/trunk/externals/tof/; revision=14223
Diffstat (limited to 'src/Makefile')
-rw-r--r--src/Makefile11
1 files changed, 2 insertions, 9 deletions
diff --git a/src/Makefile b/src/Makefile
index 9e3647e..02ed017 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -62,7 +62,7 @@ CWD := $(shell pwd)
export MACOSX_DEPLOYMENT_TARGET = 10.3
# DEFAULT TARGET # Find a way to list all c files target
-ALL = $((patsubst %.c,%.o,$(wildcard *.c)))
+ALL = $(patsubst %.c,%.$(EXTENSION),$(wildcard *.c))
default: $(ALL)
.SUFFIXES: .$(EXTENSION) .$(SHARED_LIB)
@@ -145,14 +145,7 @@ CXXFLAGS = $(CFLAGS)
rm -f -- $*.o
mv $*.$(EXTENSION) $(OUTPUT)
-### C files
-#.c:
-# $(CC) $(OPT_CFLAGS) $(CFLAGS) -o "$*.o" -c "$*.c"
-# $(CC) $(LDFLAGS) -o "$*.$(EXTENSION)" "$*.o" $(LIBS)
-# chmod a-x "$*.$(EXTENSION)"
-# $(STRIP) $*.$(EXTENSION)
-# rm -f -- $*.o
-# mv $*.$(EXTENSION) $(OUTPUT)
+