Ticket #47790: Makefile

File Makefile, 172 bytes (added by janstary (Jan Starý), 9 years ago)

provide a minimal Makefile as pstree doesn't have one

Line 
1BIN     = pstree
2MAN     = pstree.1
3
4all: pstree
5
6pstree: pstree.c
7        $(CC) $(CFLAGS) -o pstree pstree.c
8
9install: $(BIN) $(MAN)
10        install $(BIN) $(BINDIR)
11        install $(MAN) $(MANDIR)
12