filename | Makefile.am |
changeset | 521:33d2d92784c7 |
prev | 517:8191f0d305cb |
next | 681:1755a126b109 |
author | nkeynes |
date | Thu May 29 10:50:25 2008 +0000 (14 years ago) |
permissions | -rw-r--r-- |
last change | Remove pvr2mmio.h include from pvr2.h (it's supposed to be moore or less private) Move redraw function from driver into pvr2_redraw_display() |
view | annotate | diff | log | raw |
1 ## Process this file with automake to produce Makefile.in
3 if BUILD_SYSTEST
4 TEST_SUBDIR = test
5 endif
6 SUBDIRS = src po $(TEST_SUBDIR)
8 EXTRA_DIST = autogen.sh
10 install-data-local:
11 @$(NORMAL_INSTALL)
12 if test -d $(srcdir)/pixmaps; then \
13 $(mkinstalldirs) $(DESTDIR)$(datadir)/pixmaps/$(PACKAGE); \
14 for pixmap in $(srcdir)/pixmaps/*; do \
15 if test -f $$pixmap; then \
16 $(INSTALL_DATA) $$pixmap $(DESTDIR)$(datadir)/pixmaps/$(PACKAGE); \
17 fi \
18 done \
19 fi
20 $(mkinstalldirs) $(DESTDIR)$(sysconfdir)
21 $(INSTALL_DATA) lxdreamrc $(DESTDIR)$(sysconfdir)
23 dist-hook:
24 if test -d pixmaps; then \
25 mkdir $(distdir)/pixmaps; \
26 for pixmap in pixmaps/*; do \
27 if test -f $$pixmap; then \
28 cp -p $$pixmap $(distdir)/pixmaps; \
29 fi \
30 done \
31 fi
.