summaryrefslogtreecommitdiffstats
path: root/kbd/Makefile
blob: 30bfb0e8025f8c0f96b2cfcf4858496b2c1caf52 (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
# Makefile -- Makefile for util-linux Linux utilities
#
include ../make_include
include ../MCONFIG

# Where to put man pages?

MAN8= 		kbdrate.8

# Where to put binaries?
# See the "install" rule for the links. . .

SBIN= 		kbdrate

all: $(SBIN)

kbdrate: kbdrate.o

install: all
	$(INSTALLDIR) $(SBINDIR) $(MAN8DIR)
	$(INSTALLBIN) $(SBIN) $(SBINDIR)
	$(INSTALLMAN) $(MAN8) $(MAN8DIR)

clean:
	-rm -f *.o *~ core $(SBIN)