annotate database/Makefile @ 38:68a4f2d8930e

Add stuff for automatic feedback timeout.
author David A. Holland
date Sun, 15 Jun 2014 17:21:54 -0400
parents b296ea10b8f5
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2
5f36d8d69aba Set up a build framework.
David A. Holland
parents:
diff changeset
1 TOP=..
5f36d8d69aba Set up a build framework.
David A. Holland
parents:
diff changeset
2 include $(TOP)/mk/base.mk
5f36d8d69aba Set up a build framework.
David A. Holland
parents:
diff changeset
3
26
b296ea10b8f5 install the sql in $PREFIX/share
David A. Holland
parents: 2
diff changeset
4 all depend clean distclean: ;
b296ea10b8f5 install the sql in $PREFIX/share
David A. Holland
parents: 2
diff changeset
5
b296ea10b8f5 install the sql in $PREFIX/share
David A. Holland
parents: 2
diff changeset
6 INSTDIR=$(DESTDIR)$(PREFIX)/share/swallowtail/sql
b296ea10b8f5 install the sql in $PREFIX/share
David A. Holland
parents: 2
diff changeset
7
b296ea10b8f5 install the sql in $PREFIX/share
David A. Holland
parents: 2
diff changeset
8 install:
b296ea10b8f5 install the sql in $PREFIX/share
David A. Holland
parents: 2
diff changeset
9 [ -d $(INSTDIR) ] || mkdir -p $(INSTDIR)
b296ea10b8f5 install the sql in $PREFIX/share
David A. Holland
parents: 2
diff changeset
10 [ -d $(INSTDIR)/init ] || mkdir -p $(INSTDIR)/init
b296ea10b8f5 install the sql in $PREFIX/share
David A. Holland
parents: 2
diff changeset
11 [ -d $(INSTDIR)/schema ] || mkdir -p $(INSTDIR)/schema
b296ea10b8f5 install the sql in $PREFIX/share
David A. Holland
parents: 2
diff changeset
12 $(INSTALL) -c -m644 *.sql $(INSTDIR)/
b296ea10b8f5 install the sql in $PREFIX/share
David A. Holland
parents: 2
diff changeset
13 $(INSTALL) -c -m644 init/*.sql $(INSTDIR)/init/
b296ea10b8f5 install the sql in $PREFIX/share
David A. Holland
parents: 2
diff changeset
14 $(INSTALL) -c -m644 schema/*.sql $(INSTDIR)/schema/