Fixes, updates, and added uninstall target for makefile

This commit is contained in:
Dale Weiler 2013-01-27 07:45:49 +00:00
parent 3cc97984bf
commit a94d2fee4e
3 changed files with 7 additions and 2 deletions

View file

@ -182,6 +182,12 @@ install-doc:
install -m644 doc/gmqcc.1 $(DESTDIR)$(MANDIR)/man1/
install -m644 doc/qcvm.1 $(DESTDIR)$(MANDIR)/man1/
uninstall:
rm $(DESTDIR)$(BINDIR)/gmqcc
rm $(DESTDIR)$(BINDIR)/qcvm
rm $(DESTDIR)$(MANDIR)/man1/doc/gmqcc.1
rm $(DESTDIR)$(MANDIR)/man1/doc/qcvm.1
# DO NOT DELETE
util.o: gmqcc.h opts.def

View file

@ -1,7 +1,7 @@
# Contributor: matthiaskrgr <matthiaskrgr _strange_curverd_character_ freedroid D0T org>
pkgname=gmqcc-git
pkgver=20130110
pkgver=20130127
pkgrel=1
pkgdesc="An Improved Quake C Compiler"
arch=('i686' 'x86_64')

View file

@ -21,7 +21,6 @@ base:
@echo "license = MIT" >> $(PKGINFO)
@echo "conflict = gmqcc" >> $(PKGINFO)
@echo "depend = glibc" >> $(PKGINFO)
@echo "provides = gmqcc= $(MAJOR).$(MINOR).$(PATCH)" >> $(PKGINFO)
@echo "makepkgopt = strip" >> $(PKGINFO)
@echo "makepkgopt = docs" >> $(PKGINFO)
@echo "makepkgopt = libtool" >> $(PKGINFO)