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
040e2cbf
Commit
040e2cbf
authored
Aug 20, 2007
by
raburton
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
small fix to make install so no need to pre-create the binary install dir
parent
e140e427
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
11 additions
and
8 deletions
+11
-8
makefile.gtk
cvpcb/makefile.gtk
+1
-0
makefile.gtk
eeschema/makefile.gtk
+1
-0
makefile.gtk
eeschema/plugins/makefile.gtk
+1
-3
makefile.gtk
gerbview/makefile.gtk
+3
-2
makefile.gtk
kicad/makefile.gtk
+3
-2
makefile.gtk
pcbnew/makefile.gtk
+2
-1
No files found.
cvpcb/makefile.gtk
View file @
040e2cbf
...
...
@@ -25,6 +25,7 @@ $(TARGET): $(OBJECTS) makefile.gtk makefile.include $(EXTRALIBS) ../libs.linux $
install
:
$(TARGET)
mkdir
-p
$(KICAD_BIN)
cp
-f
$(TARGET)
$(KICAD_BIN)
clean
:
...
...
eeschema/makefile.gtk
View file @
040e2cbf
...
...
@@ -26,6 +26,7 @@ netlist_form_pads-pcb: plugins/netlist_form_pads-pcb.cpp makefile.gtk
install
:
$(TARGET)
mkdir
-p
$(KICAD_BIN)
cp
$(TARGET)
$(KICAD_BIN)
...
...
eeschema/plugins/makefile.gtk
View file @
040e2cbf
...
...
@@ -18,10 +18,8 @@ all: netlist_form_pads-pcb
netlist_form_pads-pcb
:
netlist_form_pads-pcb.cpp makefile.gtk
gcc
-D__UNIX__
-Wall
netlist_form_pads-pcb.cpp
-o
netlist_form_pads-pcb
$(LIBSTDC)
$(KICAD_PLUGINS)
:
install
:
netlist_form_pads-pcb
mkdir
-p
$(KICAD_PLUGINS)
install
:
$(KICAD_PLUGINS)
cp
netlist_form_pads-pcb
$(KICAD_PLUGINS)
clean
:
...
...
gerbview/makefile.gtk
View file @
040e2cbf
...
...
@@ -18,10 +18,11 @@ EDACPPFLAGS = $(CPPFLAGS)
$(TARGET)
:
$(OBJECTS) makefile.gtk makefile.include $(EXTRALIBS) ../libs.linux
$(LD)
$(LDFLAGS)
$(OBJECTS)
$(LIBS)
-o
$(TARGET)
$(LD)
$(LDFLAGS)
$(OBJECTS)
$(LIBS)
-o
$(TARGET)
install
:
$(TARGET)
cp
$(TARGET)
$(KICAD_BIN)
mkdir
-p
$(KICAD_BIN)
cp
-f
$(TARGET)
$(KICAD_BIN)
clean
:
...
...
kicad/makefile.gtk
View file @
040e2cbf
...
...
@@ -21,8 +21,9 @@ EDACPPFLAGS = $(CPPFLAGS)
$(TARGET)
:
$(OBJECTS) makefile.gtk $(EXTRALIBS) ../libs.linux
$(LD)
$(OBJECTS)
$(LDFLAGS)
$(LIBS)
-o
$(TARGET)
install
:
$(TARGET)
cp
-f
$(TARGET)
$(KICAD_BIN)
install
:
$(TARGET)
mkdir
-p
$(KICAD_BIN)
cp
-f
$(TARGET)
$(KICAD_BIN)
clean
:
rm
-f
*
.o
;
...
...
pcbnew/makefile.gtk
View file @
040e2cbf
...
...
@@ -23,7 +23,8 @@ $(TARGET): $(OBJECTS) makefile.gtk makefile.include $(LIBVIEWER3D) $(EXTRALIBS)
install
:
$(TARGET)
cp
$(TARGET)
$(KICAD_BIN)
mkdir
-p
$(KICAD_BIN)
cp
$(TARGET)
$(KICAD_BIN)
clean
:
...
...
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