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
7b007f6d
Commit
7b007f6d
authored
Nov 19, 2007
by
kintel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added deps make target for Mac OS X
parent
2a1843c3
Changes
9
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
32 additions
and
1 deletion
+32
-1
makefile.macosx
3d-viewer/makefile.macosx
+4
-0
makefile.macosx
common/makefile.macosx
+4
-0
makefile.macosx
cvpcb/makefile.macosx
+4
-0
makefile.macosx
eeschema/makefile.macosx
+4
-0
makefile.macosx
gerbview/makefile.macosx
+4
-0
makefile.macosx
kicad/makefile.macosx
+4
-0
makefile.macosx
makefile.macosx
+3
-0
makefile.macosx
pcbnew/makefile.macosx
+4
-0
ratsnest.cpp
pcbnew/ratsnest.cpp
+1
-1
No files found.
3d-viewer/makefile.macosx
View file @
7b007f6d
...
@@ -6,7 +6,11 @@ TARGET = 3d-viewer.a
...
@@ -6,7 +6,11 @@ TARGET = 3d-viewer.a
all
:
$(TARGET)
all
:
$(TARGET)
deps
:
$(CXX)
$(CPPFLAGS)
-E
-MMD
-MG
*
.cpp
>
/dev/null
include
makefile.include
include
makefile.include
-include
*.d
CPPFLAGS
+=
-DPCBNEW
-I
../pcbnew
CPPFLAGS
+=
-DPCBNEW
-I
../pcbnew
EDACPPFLAGS
=
$(CPPFLAGS)
EDACPPFLAGS
=
$(CPPFLAGS)
...
...
common/makefile.macosx
View file @
7b007f6d
...
@@ -6,7 +6,11 @@ TARGET = common.a
...
@@ -6,7 +6,11 @@ TARGET = common.a
all
:
$(TARGET)
all
:
$(TARGET)
deps
:
$(CXX)
$(CPPFLAGS)
-E
-MMD
-MG
*
.cpp
>
/dev/null
include
makefile.include
include
makefile.include
-include
*.d
CPPFLAGS
+=
$(EXTRACPPFLAGS)
CPPFLAGS
+=
$(EXTRACPPFLAGS)
EDACPPFLAGS
=
$(CPPFLAGS)
EDACPPFLAGS
=
$(CPPFLAGS)
...
...
cvpcb/makefile.macosx
View file @
7b007f6d
...
@@ -6,7 +6,11 @@ TARGET = cvpcb
...
@@ -6,7 +6,11 @@ TARGET = cvpcb
all
:
$(TARGET).app
all
:
$(TARGET).app
deps
:
$(CXX)
$(CPPFLAGS)
-E
-MMD
-MG
*
.cpp
>
/dev/null
include
makefile.include
include
makefile.include
-include
*.d
CPPFLAGS
+=
$(EXTRACPPFLAGS)
CPPFLAGS
+=
$(EXTRACPPFLAGS)
EDACPPFLAGS
=
$(CPPFLAGS)
EDACPPFLAGS
=
$(CPPFLAGS)
...
...
eeschema/makefile.macosx
View file @
7b007f6d
...
@@ -6,7 +6,11 @@ TARGET = eeschema
...
@@ -6,7 +6,11 @@ TARGET = eeschema
all
:
$(TARGET).app netlist_form_pads-pcb
all
:
$(TARGET).app netlist_form_pads-pcb
deps
:
$(CXX)
$(CPPFLAGS)
-E
-MMD
-MG
*
.cpp
>
/dev/null
include
makefile.include
include
makefile.include
-include
*.d
CPPFLAGS
+=
$(EXTRACPPFLAGS)
CPPFLAGS
+=
$(EXTRACPPFLAGS)
EDACPPFLAGS
=
$(CPPFLAGS)
EDACPPFLAGS
=
$(CPPFLAGS)
...
...
gerbview/makefile.macosx
View file @
7b007f6d
...
@@ -6,7 +6,11 @@ TARGET = gerbview
...
@@ -6,7 +6,11 @@ TARGET = gerbview
all
:
$(TARGET).app
all
:
$(TARGET).app
deps
:
$(CXX)
$(CPPFLAGS)
-E
-MMD
-MG
*
.cpp
>
/dev/null
include
makefile.include
include
makefile.include
-include
*.d
CPPFLAGS
+=
$(EXTRACPPFLAGS)
CPPFLAGS
+=
$(EXTRACPPFLAGS)
EDACPPFLAGS
=
$(CPPFLAGS)
EDACPPFLAGS
=
$(CPPFLAGS)
...
...
kicad/makefile.macosx
View file @
7b007f6d
...
@@ -6,7 +6,11 @@ TARGET = kicad
...
@@ -6,7 +6,11 @@ TARGET = kicad
all
:
$(TARGET).app
all
:
$(TARGET).app
deps
:
$(CXX)
$(CPPFLAGS)
-E
-MMD
-MG
*
.cpp
>
/dev/null
include
makefile.include
include
makefile.include
-include
*.d
CPPFLAGS
+=
$(EXTRACPPFLAGS)
CPPFLAGS
+=
$(EXTRACPPFLAGS)
EDACPPFLAGS
=
$(CPPFLAGS)
EDACPPFLAGS
=
$(CPPFLAGS)
...
...
makefile.macosx
View file @
7b007f6d
...
@@ -9,6 +9,9 @@ MAKE_CLEAN = make -f makefile.macosx clean
...
@@ -9,6 +9,9 @@ MAKE_CLEAN = make -f makefile.macosx clean
all
:
all
:
@
for
d
in
$(KICAD_SUBDIRS)
;
do
(
cd
$$
d
&&
$(MAKE)
)
;
done
@
for
d
in
$(KICAD_SUBDIRS)
;
do
(
cd
$$
d
&&
$(MAKE)
)
;
done
deps
:
@
for
d
in
$(KICAD_SUBDIRS)
;
do
(
cd
$$
d
&&
$(MAKE)
-k
deps
)
;
done
install
:
install
:
@
for
d
in
$(KICAD_SUBDIRS_BIN)
;
do
(
cd
$$
d
&&
$(MAKE_INSTALL)
)
;
done
@
for
d
in
$(KICAD_SUBDIRS_BIN)
;
do
(
cd
$$
d
&&
$(MAKE_INSTALL)
)
;
done
...
...
pcbnew/makefile.macosx
View file @
7b007f6d
...
@@ -6,7 +6,11 @@ TARGET = pcbnew
...
@@ -6,7 +6,11 @@ TARGET = pcbnew
all
:
$(TARGET).app
all
:
$(TARGET).app
deps
:
$(CXX)
$(CPPFLAGS)
-E
-MMD
-MG
*
.cpp
>
/dev/null
include
makefile.include
include
makefile.include
-include
*.d
CPPFLAGS
+=
$(EXTRACPPFLAGS)
CPPFLAGS
+=
$(EXTRACPPFLAGS)
EDACPPFLAGS
=
$(CPPFLAGS)
EDACPPFLAGS
=
$(CPPFLAGS)
...
...
pcbnew/ratsnest.cpp
View file @
7b007f6d
...
@@ -114,7 +114,7 @@ void WinEDA_BasePcbFrame::Compile_Ratsnest( wxDC* DC, bool display_status_pcb )
...
@@ -114,7 +114,7 @@ void WinEDA_BasePcbFrame::Compile_Ratsnest( wxDC* DC, bool display_status_pcb )
m_Pcb
->
m_Status_Pcb
=
0
;
/* we want a full ratnest computation, from the scratch */
m_Pcb
->
m_Status_Pcb
=
0
;
/* we want a full ratnest computation, from the scratch */
build_liste_pads
();
build_liste_pads
();
MsgPanel
->
EraseMsgBox
();
MsgPanel
->
EraseMsgBox
(
DC
);
msg
.
Printf
(
wxT
(
" %d"
),
m_Pcb
->
m_NbPads
);
msg
.
Printf
(
wxT
(
" %d"
),
m_Pcb
->
m_NbPads
);
Affiche_1_Parametre
(
this
,
1
,
wxT
(
"pads"
),
msg
,
RED
);
Affiche_1_Parametre
(
this
,
1
,
wxT
(
"pads"
),
msg
,
RED
);
...
...
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