Skip to content
Snippets Groups Projects
Commit 65ad3bac authored by Bernd Flemisch's avatar Bernd Flemisch
Browse files

[buildsystem] fix remaining occurrences of "folder/$(wildcard"

Approved by natalies.



git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@13506 2fb0f335-1f38-0410-981e-8018bf24f1b0
parent e5d531c8
No related branches found
No related tags found
No related merge requests found
......@@ -6,7 +6,7 @@ CURDIR=doc
# relative to $(CURDIR)
BASEDIR=..
EXTRA_DIST = logo/$(wildcard *.eps) \
EXTRA_DIST = $(wildcard logo/*.eps) \
CMakeLists.txt
include $(top_srcdir)/am/webstuff
......
......@@ -4,7 +4,7 @@ CURDIR=doc/doxygen
# add some more stuff to install and tarball
DOCFILES = $(PAGES)
EXTRA_DIST = $(PAGES) mainpage modules images/$(wildcard *.png) extradoc/parameterlist extradoc/parameters.html CMakeLists.txt
EXTRA_DIST = $(PAGES) mainpage modules $(wildcard images/*.png) extradoc/parameterlist extradoc/parameters.html CMakeLists.txt
include $(top_srcdir)/am/doxygen
include $(top_srcdir)/am/global-rules
......
......@@ -3,7 +3,7 @@ noinst_HEADERS := $(wildcard *.hh)
EXTRA_DIST:= $(wildcard *.input) CMakeLists.txt $(wildcard grids/*.dgf)
gridsdir=$(datadir)/dumux/grids
grids_DATA=grids/$(wildcard *.dgf)
grids_DATA=$(wildcard grids/*.dgf)
test_boxmpnc_SOURCES = test_boxmpnc.cc
test_ccmpnc_SOURCES = test_ccmpnc.cc
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment