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
install:common.a
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
......@@ -35,6 +35,6 @@ install: $(TARGET)
cp -f $(TARGET) $(KICAD_BIN)
clean:
rm *.o
rm $(TARGET)
rm -f *.o
rm -f $(TARGET)
......@@ -35,7 +35,10 @@ install: $(TARGET)
clean:
rm -f *.o; rm -f *~; rm core; rm *.bak
rm -f *.o
rm -f *~
rm -f core
rm -f *.bak
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