blob: 914e682b9caadeef6b01c07ff8b92938dc3eafdb (
plain) (
blame)
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
|
.POSIX:
CONFIGFILE = config.mk
include $(CONFIGFILE)
all: exec-as test
.o:
$(CC) -o $@ $< $(LDFLAGS)
.c.o:
$(CC) -c -o $@ $< $(CFLAGS) $(CPPFLAGS)
check: exec-as test
test "$$(./exec-as ./test 1 2 3)" = "1,3"
install: exec-as
mkdir -p -- "$(DESTDIR)$(PREFIX)/bin"
mkdir -p -- "$(DESTDIR)$(MANPREFIX)/man1"
cp -- exec-as "$(DESTDIR)$(PREFIX)/bin/"
cp -- exec-as.1 "$(DESTDIR)$(MANPREFIX)/man1/"
uninstall:
-rm -f -- "$(DESTDIR)$(PREFIX)/bin/exec-as"
-rm -f -- "$(DESTDIR)$(MANPREFIX)/man1/exec-as.1"
clean:
-rm -f -- exec-as test *.o *.su
.SUFFIXES:
.SUFFIXES: .o .c
.PHONY: all check install uninstall clean
|