diff options
author | thefosk <marco@mashape.com> | 2015-11-13 15:41:08 -0800 |
---|---|---|
committer | thefosk <marco@mashape.com> | 2015-11-13 15:41:08 -0800 |
commit | 44c3d0908310cd2455a90cd8f2454712573b1902 (patch) | |
tree | d1ede7a64eccafe41458c7b392531e963060f6a7 /Makefile | |
parent | 4fd36f5ab51a9489422b0a37454595eba297e408 (diff) | |
download | lua_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-- | Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -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 |