# #FILE # makefile # $Id: makefile 1397 2007-08-09 14:32:57Z Gary $ #AUTHOR/LEGAL # (C) 2006-2007 Gary Wallis for Unixservice. # LGPL License applies #PURPOSE # Create and install openisp RAD3 .a template library # CFLAGS= -Wall -DLinux ifdef FreeBSD LIBS= /usr/local/lib/mysql/libmysqlclient.a -lz -lssl else LIBS= /usr/lib/mysql/libmysqlclient.a -lz -lssl endif all: libtemplate.a libtemplate.a: template.o template.h ar r libtemplate.a template.o template.o: template.c template.h cc -c template.c -o template.o $(CFLAGS) clean: rm -f *.o *.a install: libtemplate.a template.h mkdir -p /usr/lib/openisp mkdir -p /usr/include/openisp install libtemplate.a /usr/lib/openisp/libtemplate.a install template.h /usr/include/openisp/template.h rm libtemplate.a