From 139e214b1f94ddba122fae98c7a1f21e8da81345 Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Sun, 11 Feb 2018 14:11:11 -0800 Subject: [PATCH] Cleaned up makefile. --- Makefile | 34 ++++++++-------------------------- 1 file changed, 8 insertions(+), 26 deletions(-) diff --git a/Makefile b/Makefile index 2603455..48260b2 100644 --- a/Makefile +++ b/Makefile @@ -1,22 +1,14 @@ # makefile for immutable table library for Lua -# usage: make LUA=/path/to/lua -LUAINC= $(LUA)/src -LUALIB= $(LUA)/src -LUABIN= $(LUA)/src -LUASUFFIX= +LUA_DIR=/opt/local +LUA_INC= $(LUA_DIR)/include +LUA_BIN= $(LUA_DIR)/bin +LUA= lua -# these will probably work if Lua has been installed globally -#LUA= /usr/local -#LUAINC= $(LUA)/include -#LUALIB= $(LUA)/lib -#LUABIN= $(LUA)/bin - -# probably no need to change anything below here CC= gcc CFLAGS= $(INCS) $(WARN) -O2 $G WARN= -std=c11 -pedantic -Wall -Wextra -INCS= -I$(LUAINC) +INCS= -I$(LUA_INC) #MAKESO= $(CC) -shared MAKESO= $(CC) -bundle -undefined dynamic_lookup @@ -29,7 +21,7 @@ TEST= tests.lua all: $T test: $T - $(LUABIN)/lua$(LUASUFFIX) $(TEST) + $(LUA_BIN)/$(LUA) $(TEST) o: $(MYLIB).o @@ -38,19 +30,9 @@ so: $T $T: $(OBJS) $(MAKESO) -o $@ $(OBJS) -$(OBJS): check-lua limmutable.c +$(OBJS): limmutable.c clean: - rm -f $(OBJS) $T lua_path core core.* - -doc: - @echo "$(MYNAME) library:" - @fgrep '/**' $(MYLIB).c | cut -f2 -d/ | tr -d '*' | sort | column - -check-lua: - @if [ "$(LUA)" = "" ]; then \ - echo "usage: make LUA=/path/to/lua"; \ - exit 1; \ - fi + rm -f $(OBJS) $T # eof