aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorthefosk <marco@mashape.com>2015-11-13 15:41:08 -0800
committerthefosk <marco@mashape.com>2015-11-13 15:41:08 -0800
commit44c3d0908310cd2455a90cd8f2454712573b1902 (patch)
treed1ede7a64eccafe41458c7b392531e963060f6a7 /Makefile
parent4fd36f5ab51a9489422b0a37454595eba297e408 (diff)
downloadlua_uuid-44c3d0908310cd2455a90cd8f2454712573b1902.tar.gz
lua_uuid-44c3d0908310cd2455a90cd8f2454712573b1902.tar.bz2
lua_uuid-44c3d0908310cd2455a90cd8f2454712573b1902.zip
Updating Makefile and rockspec + version bump
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index cb124b3..cf372f8 100644
--- a/Makefile
+++ b/Makefile
@@ -3,7 +3,7 @@ LUA_PC ?= lua5.1
LUA_LIBS ?= $(shell pkg-config $(LUA_PC) --libs)
LUA_CFLAGS = $(shell pkg-config $(LUA_PC) --cflags)
-CFLAGS ?= -O3 -Wall -Werror
+CFLAGS ?= -O2 -Wall -Werror
all: lua_uuid.so
@@ -14,5 +14,8 @@ lua_uuid.so: lua_uuid.o test/lua_uuid_test.lua
$(CC) -shared lua_uuid.o $(LUA_LIBS) -o $@
$(LUA) test/lua_uuid_test.lua
+install: lua_uuid.so
+ cp lua_uuid.so $(INST_LIBDIR)
+
clean:
rm -f lua_uuid.so lua_uuid.o *.rock