Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
K
kicad-source-mirror
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Commits
Open sidebar
Elphel
kicad-source-mirror
Commits
67a04a10
Commit
67a04a10
authored
Jun 13, 2007
by
raburton
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
make the top level makefile a little neater
parent
d3c6241a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
7 deletions
+10
-7
makefile.gtk
makefile.gtk
+10
-7
No files found.
makefile.gtk
View file @
67a04a10
MAKE
=
make
-f
makefile.gtk
KICAD_SUBDIRS
=
common 3d-viewer eeschema eeschema/plugins pcbnew cvpcb kicad gerbview
KICAD_SUBDIRS_BIN
=
eeschema eeschema/plugins pcbnew cvpcb kicad gerbview
# How to invoke make:
MAKE
=
make
-k
-f
makefile.gtk
MAKE_INSTALL
=
make
-f
makefile.gtk
install
MAKE_CLEAN
=
make
-f
makefile.gtk clean
all
:
@
for
d
in
$(KICAD_SUBDIRS)
;
do
(
cd
$$
d
&&
$(MAKE)
)
;
done
@
for
dir
in
$(KICAD_SUBDIRS)
;
do
\
$(MAKE)
-C
$$
dir
;
\
done
install
:
@
for
d
in
$(KICAD_SUBDIRS_BIN)
;
do
(
cd
$$
d
&&
$(MAKE_INSTALL)
)
;
done
@
for
dir
in
$(KICAD_SUBDIRS_BIN)
;
do
\
$(MAKE)
-C
$$
dir install
;
\
done
clean
:
@
for
d
in
$(KICAD_SUBDIRS)
;
do
(
cd
$$
d
&&
$(MAKE_CLEAN)
)
;
done
@
for
dir
in
$(KICAD_SUBDIRS)
;
do
\
$(MAKE)
-C
$$
dir
clean
;
\
done
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