File: GNUmakefile

package info (click to toggle)
openrc 0.23-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 2,052 kB
  • ctags: 1,434
  • sloc: ansic: 12,828; sh: 1,762; makefile: 511; perl: 28
file content (58 lines) | stat: -rw-r--r-- 1,393 bytes parent folder | download
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

DESTDIR ?=
PREFIX  ?= /
COMPRESS_MAN ?= yes
STRIP_BINARY ?= yes
#EXAMPLES ?= yes

STDFLAG ?= -D_BSD_SOURCE
CSECFLAGS ?= -fstack-protector-all -Wall --param ssp-buffer-size=4 -D_FORTIFY_SOURCE=2 -fstack-check -DPARANOID
CFLAGS ?= -march=native -pipe -O2 -std=c99
CFLAGS += $(CSECFLAGS) $(STDFLAG)
DEBUGCFLAGS ?= -pipe -Wall -Werror -ggdb3 -Wno-error=unused-variable $(CSECFLAGS)

LDSECFLAGS ?= -Xlinker -zrelro
LDFLAGS += $(LDSECFLAGS)

INSTDIR = $(DESTDIR)$(PREFIX)

objs=\
main.o\

binary=lsb2rcconf

#.PHONY: doc

all: $(objs)
	$(CC) $(CFLAGS) $(LDFLAGS) $(objs) $(LIBS) -o $(binary)

%.o: %.c
	$(CC) $(CFLAGS) $(INC) $< -c -o $@

clean:
	rm -f $(binary) $(objs)

distclean: clean

test:
	sh tests/run.sh

install:
	install -d "$(INSTDIR)/lib/rc/bin" "$(INSTDIR)/share/man/man1"
ifeq ($(STRIP_BINARY),yes)
	strip --strip-unneeded -R .comment -R .GCC.command.line -R .note.gnu.gold-version $(binary)
endif
	install -m 755 $(binary) "$(INSTDIR)"/lib/rc/bin
#	install -m 644 man/man1/lsb2rcconf.1 "$(INSTDIR)"/share/man/man1/
#ifeq ($(COMPRESS_MAN),yes)
#	rm -f "$(INSTDIR)"/share/man/man1/lsb2rcconf.1.gz
#	gzip "$(INSTDIR)"/share/man/man1/lsb2rcconf.1
#endif

deinstall:
	rm -f "$(INSTDIR)"/lib/rc/lsb2rcconf "$(INSTDIR)"/share/man/man1/lsb2rcconf.1{,.gz}

dpkg: clean
	tar --exclude "debian" --exclude-vcs -C .. -cJvf ../openrc-lsb_0.0.orig.tar.xz openrc-lsb
	dpkg-buildpackage -rfakeroot