17 lines
370 B
Makefile
17 lines
370 B
Makefile
|
all: compile
|
||
|
|
||
|
%.o: %.c
|
||
|
$(CC) $(CPPFLAGS) $(CFLAGS) -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
|