[go: up one dir, main page]

File: Makefile

package info (click to toggle)
s390-tools 1.25.0-2
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 4,564 kB
  • ctags: 9,593
  • sloc: ansic: 53,784; sh: 8,627; cpp: 8,191; perl: 3,712; makefile: 989; asm: 654
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