File: Makefile

package info (click to toggle)
apparmor 2.13.6-10
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 28,604 kB
  • sloc: python: 18,892; ansic: 17,618; perl: 11,105; sh: 10,465; cpp: 5,413; yacc: 1,950; makefile: 1,729; lex: 1,105; pascal: 1,097; ruby: 374; exp: 250; java: 212; xml: 159
file content (24 lines) | stat: -rw-r--r-- 452 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
TARGETS=change_hat child open
PROFILES=change_hat.profile  child.profile  open.profile  sh.profile
LIB:=apparmor
LIBS=-l$(LIB)

all: targets profiles

targets: $(TARGETS)

profiles:
	for i in $(PROFILES) ;\
	do \
		sed "s~BASE~$$PWD~" $$i.pre | sed "s/AA/${LIB}/" > $$i ;\
	done

change_hat: change_hat.c
	cc -Wall -o $@ $< $(LIBS)
child: child.c
	cc -Wall -o $@ $< $(LIBS)
open: open.c
	cc -Wall -o $@ $< $(LIBS)

clean:
	rm -f $(TARGETS) $(PROFILES)