12345678910111213141516171819202122232425 |
- # This is BSD Makefile
- # BSD GNU
- # ${.TARGET} $@
- # ${.ALLSRC} $^
- # ${.IMPSRC} $<
- INCDIR ?= /usr/include
- PY = python2.7
- DEFS = defs-basictypes defs-lc
- all: LibW.txt ${DEFS}
- LibW.txt: LibW.txt.templ ${DEFS} libver osname machine
- ${PY} ./untempl.py LibW.txt.templ ${.TARGET}
- defs-basictypes: sizeofs
- ./sizeofs > ${.TARGET}
- defs-lc:
- ./dumpdefs.py 2 1 i ${INCDIR}/locale.h | grep " LC_" > ${.TARGET}
- clean:
- rm -f ${DEFS} LibW.txt sizeofs
|