Makefile: clean mcp251xfd/*.o
make distclean depend on clean target in Makefile Signed-off-by: Lothar Rubusch <l.rubusch@gmail.com>pull/316/head
parent
8bf57429fc
commit
9fd2b2e617
6
Makefile
6
Makefile
|
|
@ -102,14 +102,14 @@ PROGRAMS := \
|
||||||
all: $(PROGRAMS)
|
all: $(PROGRAMS)
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
rm -f $(PROGRAMS) *.o
|
rm -f $(PROGRAMS) *.o mcp251xfd/*.o
|
||||||
|
|
||||||
install:
|
install:
|
||||||
mkdir -p $(DESTDIR)$(PREFIX)/bin
|
mkdir -p $(DESTDIR)$(PREFIX)/bin
|
||||||
cp -f $(PROGRAMS) $(DESTDIR)$(PREFIX)/bin
|
cp -f $(PROGRAMS) $(DESTDIR)$(PREFIX)/bin
|
||||||
|
|
||||||
distclean:
|
distclean: clean
|
||||||
rm -f $(PROGRAMS) $(LIBRARIES) *.o *~
|
rm -f $(PROGRAMS) $(LIBRARIES) *~
|
||||||
|
|
||||||
asc2log.o: lib.h
|
asc2log.o: lib.h
|
||||||
canbusload.o: lib.h
|
canbusload.o: lib.h
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue