summaryrefslogtreecommitdiffstats
path: root/Makefile
blob: cde5b0b9f259db83762dd4c55a4d828fb52878a5 (plain)
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62

.PHONY: clean clobber uninstall

CFLAGS := -Wall -g -I/usr/include/libxml2 -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE

COMMON := qarsh_packet.c sockutil.c

TARGETS := qarshd qarsh qacp btimed btimec

all: $(TARGETS)

qarshd: qarshd.c $(COMMON) 
qarsh: qarsh.c $(COMMON) btime.c hbeat.c
qacp: qacp.c $(COMMON)
qarshd qarsh qacp: LOADLIBES := -lxml2
btimed: btimed.c
btimec: btimec.c btime.c

install: all
	install -D qacp $(INSTROOT)/usr/bin/qacp
	install -D qarsh $(INSTROOT)/usr/bin/qarsh
	install -D qarshd $(INSTROOT)/usr/sbin/qarshd
	install -D qarsh.xinetd $(INSTROOT)/etc/xinetd.d/qarsh
	install -D btimed $(INSTROOT)/usr/sbin/btimed
	install -D btimec $(INSTROOT)/usr/bin/btimec
	install -D btimed.xinetd $(INSTROOT)/etc/xinetd.d/btimed
	install -D qarsh.1 $(INSTROOT)/usr/share/man/man1/qarsh.1
	install -D qacp.1 $(INSTROOT)/usr/share/man/man1/qacp.1
	install -D btimec.1 $(INSTROOT)/usr/share/man/man1/btimec.1
	install -D qarshd.8 $(INSTROOT)/usr/share/man/man8/qarshd.8
	install -D btimed.8 $(INSTROOT)/usr/share/man/man8/btimed.8

clean:
	$(RM) $(TARGETS)

VERSION := $(shell awk '/^Version:/ { print $$2 }' qarsh.spec)

ifdef DIST
  RPMDEFS := -D "dist $(DIST)"
endif

tarfiles := qarsh.spec Makefile
tarfiles += $(wildcard *.c *.h)
tarfiles += qarsh.1 qacp.1 btimec.1
tarfiles += qarshd.8 btimed.8
tarfiles += *.xinetd

qarsh-$(VERSION).tar.bz2: $(tarfiles)
	-rm $@
	tar cjf $@ $^

tarball: qarsh-$(VERSION).tar.bz2

rpm: qarsh-$(VERSION).tar.bz2 qarsh.spec
	rpmbuild -ta $< $(RPMDEFS)

srpm: qarsh-$(VERSION).tar.bz2 qarsh.spec
	rpmbuild -ts $< $(RPMDEFS)

# Redefine the default compile rule to include target specific parts
%: %.c
	$(LINK.c) $(CFLAGS_$@) $^ $(LIBS_$@) $(LOADLIBES) -o $@