[go: up one dir, main page]

File: Makefile

package info (click to toggle)
s390-tools 1.16.0-2
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 4,332 kB
  • sloc: ansic: 46,620; sh: 8,560; cpp: 8,185; asm: 5,503; perl: 3,014; makefile: 886
file content (22 lines) | stat: -rw-r--r-- 436 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
include ../common.mak

CPPFLAGS += -I../include

all: mon_fsstatd mon_procd

mon_fsstatd.o: mon_fsstatd.h
mon_fsstatd: mon_fsstatd.o

mon_procd.o: mon_procd.h
mon_procd: mon_procd.o

install: all
	$(INSTALL) mon_fsstatd $(USRSBINDIR)
	$(INSTALL_DATA) mon_fsstatd.8 $(MANDIR)/man8
	$(INSTALL) mon_procd $(USRSBINDIR)
	$(INSTALL_DATA) mon_procd.8 $(MANDIR)/man8

clean:
	rm -f *.o *~ mon_fsstatd mon_procd core

.PHONY: all install clean