rsc | aa73861 | 2004-03-01 19:36:29 +0000 | [diff] [blame] | 1 | LIB=libutf.a |
| 2 | VERSION=2.0 |
| 3 | PORTPLACE=devel/libutf |
| 4 | NAME=libutf |
| 5 | |
| 6 | OFILES=\ |
| 7 | rune.$O\ |
| 8 | runestrcat.$O\ |
| 9 | runestrchr.$O\ |
| 10 | runestrcmp.$O\ |
| 11 | runestrcpy.$O\ |
| 12 | runestrdup.$O\ |
| 13 | runestrlen.$O\ |
| 14 | runestrecpy.$O\ |
| 15 | runestrncat.$O\ |
| 16 | runestrncmp.$O\ |
| 17 | runestrncpy.$O\ |
| 18 | runestrrchr.$O\ |
| 19 | runestrstr.$O\ |
| 20 | runetype.$O\ |
| 21 | utfecpy.$O\ |
| 22 | utflen.$O\ |
| 23 | utfnlen.$O\ |
| 24 | utfrrune.$O\ |
| 25 | utfrune.$O\ |
| 26 | utfutf.$O\ |
| 27 | |
| 28 | HFILES=\ |
| 29 | utf.h\ |
| 30 | |
| 31 | all: $(LIB) |
| 32 | |
| 33 | install: $(LIB) |
rsc | 1b7f98f | 2004-12-28 23:27:43 +0000 | [diff] [blame] | 34 | mkdir -p $(PREFIX)/man/man3 $(PREFIX)/man/man7 |
rsc | aa73861 | 2004-03-01 19:36:29 +0000 | [diff] [blame] | 35 | install -c -m 0644 isalpharune.3 $(PREFIX)/man/man3/isalpharune.3 |
| 36 | install -c -m 0644 utf.7 $(PREFIX)/man/man7/utf.7 |
| 37 | install -c -m 0644 rune.3 $(PREFIX)/man/man3/rune.3 |
| 38 | install -c -m 0644 runestrcat.3 $(PREFIX)/man/man3/runestrcat.3 |
rsc | d3a2506 | 2005-01-16 21:32:01 +0000 | [diff] [blame] | 39 | mkdir -p $(PREFIX)/include |
rsc | aa73861 | 2004-03-01 19:36:29 +0000 | [diff] [blame] | 40 | install -c -m 0644 utf.h $(PREFIX)/include/utf.h |
rsc | d3a2506 | 2005-01-16 21:32:01 +0000 | [diff] [blame] | 41 | mkdir -p $(PREFIX)/lib |
rsc | aa73861 | 2004-03-01 19:36:29 +0000 | [diff] [blame] | 42 | install -c -m 0644 $(LIB) $(PREFIX)/lib/$(LIB) |
| 43 | |