summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Pointner <equinox@anylike.org>2009-12-27 14:29:23 +0000
committerChristian Pointner <equinox@anylike.org>2009-12-27 14:29:23 +0000
commit4e80ec682835280160b81d1fe41da77898f99f71 (patch)
treeb578e0e7210be7f5d10e4b6479db01d838a9c575
parentmoved from loadfile to loadbuffer (diff)
fixed strip target
-rw-r--r--src/Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/Makefile b/src/Makefile
index 29e95aa..f1cb70a 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -80,8 +80,10 @@ $(LUA_OBJ_INCLUDE): $(LUA_OBJ)
$(LUA) bin2c.lua $(LUA_OBJ) $(LUA_OBJ_INCLUDE:%.h=%) > $@
strip: $(EXECUTABLE) $(LUA_OBJ)
- $(STRIP) -s $(EXECUTABLE)
$(LUAC) -s -o $(LUA_OBJ) $(LUA_OBJ)
+ $(MAKE)
+ $(STRIP) -s $(EXECUTABLE)
+
distclean: cleanall
find . -name *.o -exec rm -f {} \;