# Makefile for app-defaults
# Install edited app-defaults in the right place

include ../../../makefile.inc
LANG=ga
INSTDIR=${PREFIX}/usr/X11R6/lib/X11/${LANG}/app-defaults

FILES=	\
	XCalc		\
	XLock		\
	Xman		\
	Editres		\
	Chooser		\
	Bitmap		\
	Viewres		\
	XClipboard	\
	XFontSel	\
	XPaint		\
	XSm		\
	XTerm		\
	Xditview	\
	Xedit		\
	Xfd		\
	Xmh		\
	Xvidtune

TARGETS=$(patsubst %,${INSTDIR}/%,${FILES})

all:  ${TARGETS}

# Ensure the directory is there
${INSTDIR}:
	mkdir -p ${INSTDIR}

# copy each file into builddir
${INSTDIR}/% :: % ${INSTDIR}
	cp -f $< $@


