mirror of
https://github.com/vanhauser-thc/thc-hydra.git
synced 2025-02-22 01:38:44 -08:00
31 lines
641 B
Makefile
31 lines
641 B
Makefile
## Process this file with automake to produce Makefile.in
|
|
|
|
SUBDIRS = src
|
|
|
|
EXTRA_DIST = \
|
|
autogen.sh \
|
|
xhydra.glade \
|
|
xhydra.gladep
|
|
|
|
install-data-local:
|
|
@$(NORMAL_INSTALL)
|
|
if test -d $(srcdir)/pixmaps; then \
|
|
$(mkinstalldirs) $(DESTDIR)$(pkgdatadir)/pixmaps; \
|
|
for pixmap in $(srcdir)/pixmaps/*; do \
|
|
if test -f $$pixmap; then \
|
|
$(INSTALL_DATA) $$pixmap $(DESTDIR)$(pkgdatadir)/pixmaps; \
|
|
fi \
|
|
done \
|
|
fi
|
|
|
|
dist-hook:
|
|
if test -d pixmaps; then \
|
|
mkdir $(distdir)/pixmaps; \
|
|
for pixmap in pixmaps/*; do \
|
|
if test -f $$pixmap; then \
|
|
cp -p $$pixmap $(distdir)/pixmaps; \
|
|
fi \
|
|
done \
|
|
fi
|
|
|