Browse Source

autotools: create a ucd-update target to regenerate the sources from UCD data

master
Reece H. Dunn 11 years ago
parent
commit
fb0e77ff5d
1 changed files with 4 additions and 8 deletions
  1. 4
    8
      Makefile.am

+ 4
- 8
Makefile.am View File

@@ -88,14 +88,10 @@ tools/scripts.py: tools/ucd.py \
supplemental/Klingon.txt \
data/ucd/Scripts.txt

src/case.cpp: tools/case.py
tools/case.py ${UCD_ROOTDIR} ${UCD_VERSION} > $@

src/categories.cpp: tools/categories.py
tools/categories.py ${UCD_ROOTDIR} ${UCD_VERSION} > $@

src/scripts.cpp: tools/scripts.py
tools/scripts.py ${UCD_ROOTDIR} ${UCD_VERSION} > $@
ucd-update: tools/case.py tools/categories.py tools/scripts.py
tools/case.py ${UCD_ROOTDIR} ${UCD_VERSION} > src/case.cpp
tools/categories.py ${UCD_ROOTDIR} ${UCD_VERSION} > src/categories.cpp
tools/scripts.py ${UCD_ROOTDIR} ${UCD_VERSION} > src/scripts.cpp

libucd_includedir = $(includedir)/ucd
libucd_include_HEADERS = \

Loading…
Cancel
Save