plan9port

fork of plan9port with libvec, libstr and libsdb
Log | Files | Refs | README | LICENSE

Makefile.utf (875B)


      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)
     34 	mkdir -p $(PREFIX)/share/man/man3 $(PREFIX)/man/man7
     35 	install -c -m 0644 isalpharune.3 $(PREFIX)/share/man/man3/isalpharune.3
     36 	install -c -m 0644 utf.7 $(PREFIX)/man/man7/utf.7
     37 	install -c -m 0644 rune.3 $(PREFIX)/share/man/man3/rune.3
     38 	install -c -m 0644 runestrcat.3 $(PREFIX)/share/man/man3/runestrcat.3
     39 	mkdir -p $(PREFIX)/include
     40 	install -c -m 0644 utf.h $(PREFIX)/include/utf.h
     41 	mkdir -p $(PREFIX)/lib
     42 	install -c -m 0644 $(LIB) $(PREFIX)/lib/$(LIB)
     43