Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
emulab-devel
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
143
Issues
143
List
Boards
Labels
Service Desk
Milestones
Merge Requests
6
Merge Requests
6
Operations
Operations
Incidents
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
emulab
emulab-devel
Commits
d3afb11d
Commit
d3afb11d
authored
Dec 10, 2012
by
Leigh B Stoller
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Build genirack subdir when its a geni rack build.
parent
eb41c014
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
1 deletion
+15
-1
install/GNUmakefile.in
install/GNUmakefile.in
+15
-1
No files found.
install/GNUmakefile.in
View file @
d3afb11d
...
...
@@ -25,6 +25,8 @@ SRCDIR = @srcdir@
TESTBED_SRCDIR = @top_srcdir@
OBJDIR = ..
SUBDIR = install
GENIRACK = @PROTOGENI_GENIRACK@
SUBDIRS =
include $(OBJDIR)/Makeconf
...
...
@@ -36,11 +38,15 @@ else
TARGETS = clrhouse-install
endif
ifeq ($(GENIRACK),1)
SUBDIRS = genirack
endif
#
# Force dependencies on the scripts so that they will be rerun through
# configure if the .in file is changed.
#
all: $(TARGETS)
all: $(TARGETS)
all-subdirs
include $(TESTBED_SRCDIR)/GNUmakerules
...
...
@@ -53,3 +59,11 @@ install: $(INSTALL_LIBDIR)/libinstall.pm \
clean:
rm -f $(TARGETS)
# How to recursively descend into subdirectories to make general
# targets such as `all'.
%.MAKE:
@$(MAKE) -C $(dir $@) $(basename $(notdir $@))
%-subdirs: $(addsuffix /%.MAKE,$(SUBDIRS)) ;
.PHONY: ${SUBDIRS}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment