source: branches/minix3-book/drivers/tty/keymaps/Makefile

Last change on this file was 4, checked in by Mattia Monga, 13 years ago

Importazione sorgenti libro

File size: 304 bytes
Line 
1# Generate binary keymaps.
2
3LK = /usr/lib/keymaps
4
5.SUFFIXES: .src .map
6
7.src.map:
8 $(CC) -DKEYSRC=\"$<\" genmap.c
9 ./a.out > $@
10 @rm -f a.out
11
12all: \
13 us-std.map \
14
15install: \
16 $(LK) \
17 $(LK)/us-std.map \
18
19clean:
20 rm -f a.out *.map
21
22$(LK):
23 install -d $@
24
25$(LK)/us-std.map: us-std.map
26 install -c $? $@
Note: See TracBrowser for help on using the repository browser.