files = pebblisp.c tokens.c object.c env.c web.c exe = pl BINPREFIX ?= /usr/bin SCRIPTDIR ?= /usr/local/share/pebblisp mkfile_path := $(abspath $(lastword $(MAKEFILE_LIST))) mkfile_dir := $(dir $(mkfile_path)) GCC_COM ?= gcc -lmicrohttpd -g -O0 -Wall -o $(exe) -D STANDALONE -DSCRIPTDIR=\"$(SCRIPTDIR)\" all: $(GCC_COM) $(files) && echo && ./tests.sh notest: $(GCC_COM) $(files) local: gcc -g -O0 -Wall -o $(exe) -D STANDALONE -DSCRIPTDIR=\"$(mkfile_dir)/examples\" $(files) val: $(GCC_COM) $(files) && ./tests.sh -val debug: $(GCC_COM) -D DEBUG $(files) run: ./$(exe) install: cp -pf ./$(exe) $(BINPREFIX) mkdir -p $(SCRIPTDIR) cp ./examples/* $(SCRIPTDIR) uninstall: rm $(BINPREFIX)/$(exe) rm -r $(SCRIPTDIR)