Update Makefile

This commit is contained in:
GenjiFujimoto 2023-05-10 19:52:09 +02:00
parent 9e0e00b4a7
commit e6f7000c68

View file

@ -17,14 +17,14 @@ options:
popup: popup.o
$(CC) -o $@ popup.o $(LDFLAGS)
install: herbe
install: all
mkdir -p ${DESTDIR}${PREFIX}/bin
cp -f herbe ${DESTDIR}${PREFIX}/bin
cp -f popup ${DESTDIR}${PREFIX}/bin
uninstall:
rm -f ${DESTDIR}${PREFIX}/bin/herbe
rm -f ${DESTDIR}${PREFIX}/bin/popup
clean:
rm -f herbe
rm -f popup $(OBJ)
.PHONY: all install uninstall clean