blob: 7acf4ec0ac3e4c6e9a34193f0f053086f0c4336c (
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
|
VERSION = 2.1
PREFIX = /usr/local
install:
install -D -t $(DESTDIR)$(PREFIX)/include/fortify \
include/*.h
install -D -t $(DESTDIR)$(PREFIX)/include/fortify/sys \
include/sys/*.h
uninstall:
rm -rf $(DESTDIR)$(PREFIX)/include/fortify
dist: clean
mkdir -p fortify-headers-$(VERSION)
cp -R LICENSE Makefile README include fortify-headers-$(VERSION)
tar -cf fortify-headers-$(VERSION).tar fortify-headers-$(VERSION)
gzip fortify-headers-$(VERSION).tar
rm -rf fortify-headers-$(VERSION)
clean:
rm -f fortify-headers-$(VERSION).tar.gz
.PHONY:
install uninstall dist clean
|