Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
Algorithms Library Toolkit Core
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Container registry
Model registry
Monitor
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Algorithms Library Toolkit
Algorithms Library Toolkit Core
Commits
f2ddc2cf
Commit
f2ddc2cf
authored
11 years ago
by
Jan Trávníček
Browse files
Options
Downloads
Patches
Plain Diff
clean rule in master makefile
parent
39ec19e7
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
makefile
+7
-0
7 additions, 0 deletions
makefile
with
7 additions
and
0 deletions
makefile
+
7
−
0
View file @
f2ddc2cf
...
@@ -5,6 +5,8 @@ BINFOLDER = bin
...
@@ -5,6 +5,8 @@ BINFOLDER = bin
SUBDIRS_LIBS
=
alib adeterminize
SUBDIRS_LIBS
=
alib adeterminize
SUBDIRS_BINS
=
acat aconvert aconvert.dot aconvert.gastex aconvert.regexp aconvert.automaton aminimize adeterminize.fsm adiff adiff.automaton adiff.grammar aepsilon
SUBDIRS_BINS
=
acat aconvert aconvert.dot aconvert.gastex aconvert.regexp aconvert.automaton aminimize adeterminize.fsm adiff adiff.automaton adiff.grammar aepsilon
SUBDIRS_WITH_MAKE
=
$(
dir
$(
wildcard
*
/makefile
))
.PHONY
:
$(SUBDIRS_LIBS) $(SUBDIRS_BINS)
.PHONY
:
$(SUBDIRS_LIBS) $(SUBDIRS_BINS)
all
:
$(SUBDIRS_LIBS) $(SUBDIRS_BINS) copy
all
:
$(SUBDIRS_LIBS) $(SUBDIRS_BINS) copy
...
@@ -15,6 +17,11 @@ $(SUBDIRS_LIBS):
...
@@ -15,6 +17,11 @@ $(SUBDIRS_LIBS):
$(SUBDIRS_BINS)
:
$(SUBDIRS_BINS)
:
$(MAKE)
-C
$@
$(MAKE)
-C
$@
clean
:
for
dir
in
$(SUBDIRS_WITH_MAKE);
do
\
$(MAKE)
-C
$$dir
clean;
\
done
copy
:
copy
:
mkdir
-p
$(BINFOLDER)
mkdir
-p
$(BINFOLDER)
rm
-rf
$(BINFOLDER)/*
rm
-rf
$(BINFOLDER)/*
...
...
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