624d969c52
Also fix all warnings.
17 lines
407 B
Makefile
17 lines
407 B
Makefile
all: compile
|
|
|
|
%.o: %.c
|
|
$(CC) $(CPPFLAGS) $(CFLAGS) -D_GNU_SOURCE -std=c99 -Wall -Wextra -fPIC -c -o $@ $<
|
|
|
|
clean:
|
|
rm -f parser.so *.o
|
|
|
|
parser.so: template_parser.o template_utils.o template_lmo.o template_lualib.o
|
|
$(CC) $(LDFLAGS) -shared -o $@ $^
|
|
|
|
compile: parser.so
|
|
|
|
install: compile
|
|
mkdir -p $(DESTDIR)/usr/lib/lua/gluon/web/template
|
|
cp parser.so $(DESTDIR)/usr/lib/lua/gluon/web/template/parser.so
|