Update Makefile
This commit is contained in:
parent
9e0e00b4a7
commit
e6f7000c68
8
Makefile
8
Makefile
|
@ -17,14 +17,14 @@ options:
|
||||||
popup: popup.o
|
popup: popup.o
|
||||||
$(CC) -o $@ popup.o $(LDFLAGS)
|
$(CC) -o $@ popup.o $(LDFLAGS)
|
||||||
|
|
||||||
install: herbe
|
install: all
|
||||||
mkdir -p ${DESTDIR}${PREFIX}/bin
|
mkdir -p ${DESTDIR}${PREFIX}/bin
|
||||||
cp -f herbe ${DESTDIR}${PREFIX}/bin
|
cp -f popup ${DESTDIR}${PREFIX}/bin
|
||||||
|
|
||||||
uninstall:
|
uninstall:
|
||||||
rm -f ${DESTDIR}${PREFIX}/bin/herbe
|
rm -f ${DESTDIR}${PREFIX}/bin/popup
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
rm -f herbe
|
rm -f popup $(OBJ)
|
||||||
|
|
||||||
.PHONY: all install uninstall clean
|
.PHONY: all install uninstall clean
|
||||||
|
|
Loading…
Reference in a new issue