Commit 617418b4 authored by raburton's avatar raburton

fix clean targets in makefile so they don't fail if already clean

parent 1e66c5a6
...@@ -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
...@@ -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)
...@@ -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)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment