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
617418b4
Commit
617418b4
authored
Jun 05, 2007
by
raburton
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix clean targets in makefile so they don't fail if already clean
parent
1e66c5a6
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
4 deletions
+11
-4
makefile.gtk
common/makefile.gtk
+5
-1
makefile.gtk
cvpcb/makefile.gtk
+2
-2
makefile.gtk
eeschema/makefile.gtk
+4
-1
No files found.
common/makefile.gtk
View file @
617418b4
...
@@ -24,7 +24,11 @@ common.a: $(OBJECTS) makefile.gtk makefile.include
...
@@ -24,7 +24,11 @@ common.a: $(OBJECTS) makefile.gtk makefile.include
install
:
common.a
install
:
common.a
clean
:
clean
:
rm
-f
*
.o
;
rm
-f
*
~
;
rm
core
;
rm
*
.bak
;
rm
*
.obj
rm
-f
*
.o
rm
-f
*
~
rm
-f
core
rm
-f
*
.bak
rm
-f
*
.obj
rm
-f
common.a
rm
-f
common.a
cvpcb/makefile.gtk
View file @
617418b4
...
@@ -35,6 +35,6 @@ install: $(TARGET)
...
@@ -35,6 +35,6 @@ install: $(TARGET)
cp
-f
$(TARGET)
$(KICAD_BIN)
cp
-f
$(TARGET)
$(KICAD_BIN)
clean
:
clean
:
rm
*
.o
rm
-f
*
.o
rm
$(TARGET)
rm
-f
$(TARGET)
eeschema/makefile.gtk
View file @
617418b4
...
@@ -35,7 +35,10 @@ install: $(TARGET)
...
@@ -35,7 +35,10 @@ install: $(TARGET)
clean
:
clean
:
rm
-f
*
.o
;
rm
-f
*
~
;
rm
core
;
rm
*
.bak
rm
-f
*
.o
rm
-f
*
~
rm
-f
core
rm
-f
*
.bak
rm
-f
$(TARGET)
rm
-f
$(TARGET)
...
...
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