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 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