Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
emulab-devel
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
emulab
emulab-devel
Commits
77ce3d5d
Commit
77ce3d5d
authored
20 years ago
by
Robert Ricci
Browse files
Options
Downloads
Patches
Plain Diff
Don't recurse into the event/ subdir for targets like post-install if
the event system is disabled.
parent
e40a2da1
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
GNUmakefile.in
+9
-0
9 additions, 0 deletions
GNUmakefile.in
with
9 additions
and
0 deletions
GNUmakefile.in
+
9
−
0
View file @
77ce3d5d
...
@@ -6,6 +6,7 @@ OBJDIR = .
...
@@ -6,6 +6,7 @@ OBJDIR = .
SUBDIR =
SUBDIR =
TESTBED_SRCDIR = @top_srcdir@
TESTBED_SRCDIR = @top_srcdir@
DISTCLEAN_FILES = @DISTCLEAN_FILES@
DISTCLEAN_FILES = @DISTCLEAN_FILES@
EVENTSYS = @EVENTSYS@
include Makeconf
include Makeconf
...
@@ -51,7 +52,9 @@ post-install:
...
@@ -51,7 +52,9 @@ post-install:
@$(MAKE) -C security post-install
@$(MAKE) -C security post-install
@$(MAKE) -C vis post-install
@$(MAKE) -C vis post-install
@$(MAKE) -C www post-install
@$(MAKE) -C www post-install
ifeq ($(EVENTSYS),1)
@$(MAKE) -C event post-install
@$(MAKE) -C event post-install
endif
@$(MAKE) -C mote post-install
@$(MAKE) -C mote post-install
#
#
...
@@ -66,7 +69,9 @@ ops-install:
...
@@ -66,7 +69,9 @@ ops-install:
@$(MAKE) -C tbsetup control-install
@$(MAKE) -C tbsetup control-install
@$(MAKE) -C utils control-install
@$(MAKE) -C utils control-install
@$(MAKE) -C lib control-install
@$(MAKE) -C lib control-install
ifeq ($(EVENTSYS),1)
@$(MAKE) -C event control-install
@$(MAKE) -C event control-install
endif
@$(MAKE) -C xmlrpc control-install
@$(MAKE) -C xmlrpc control-install
@$(MAKE) -C tmcd control-install
@$(MAKE) -C tmcd control-install
...
@@ -102,13 +107,17 @@ client-mkdirs:
...
@@ -102,13 +107,17 @@ client-mkdirs:
client:
client:
@$(MAKE) -C lib/libtb client
@$(MAKE) -C lib/libtb client
ifeq ($(EVENTSYS),1)
@$(MAKE) -C event client
@$(MAKE) -C event client
endif
@$(MAKE) -C os client
@$(MAKE) -C os client
@$(MAKE) -C sensors client
@$(MAKE) -C sensors client
@$(MAKE) -C tmcd client
@$(MAKE) -C tmcd client
client-install: client client-mkdirs
client-install: client client-mkdirs
ifeq ($(EVENTSYS),1)
@$(MAKE) -C event client-install
@$(MAKE) -C event client-install
endif
@$(MAKE) -C os client-install
@$(MAKE) -C os client-install
@$(MAKE) -C sensors client-install
@$(MAKE) -C sensors client-install
@$(MAKE) -C tmcd client-install
@$(MAKE) -C tmcd client-install
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment