-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathMakefile
28 lines (21 loc) · 796 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
BINS = sparql-query sparql-update
TESTS = scan-test
LINKS = sparql-update
REQUIRES = glib-2.0 libcurl libxml-2.0
gitrev := $(shell git describe --always)
# PROFILE = -pg
CFLAGS = -std=gnu99 -Wall -DGIT_REV=\"$(gitrev)\" $(PROFILE) -g -O2 `pkg-config --cflags $(REQUIRES)`
LDFLAGS = $(PROFILE) `pkg-config --libs $(REQUIRES)` -lreadline -lncurses
all: $(BINS) $(LINKS)
sparql-update:
ln -s sparql-query sparql-update
install: all
mkdir -p $(DESTDIR)/usr/local/bin/
install $(BINS) $(DESTDIR)/usr/local/bin/
ln -s -f $(DESTDIR)/usr/local/bin/sparql-query $(DESTDIR)/usr/local/bin/sparql-update
clean:
rm -f *.o $(BINS) $(LINKS) $(TESTS)
scan-test: scan-test.o scan-sparql.o
$(CC) -o $@ $^ $(LDFLAGS)
sparql-query: sparql-query.o result-parse.o scan-sparql.o
$(CC) -o $@ $^ $(LDFLAGS)