annotate database/Makefile @ 44:812c956dd0e9

Add another admin queue type for comments on nonexistent PRs. Also, correct stupid spelling mistake. Need to get the test harness running again.
author David A. Holland
date Mon, 16 Jun 2014 01:27:45 -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/