mirror of
https://github.com/DarkPlacesEngine/gmqcc.git
synced 2024-11-27 06:02:22 +00:00
Proper install names (preserve the .exe for win32 builds)
This commit is contained in:
parent
a879fc28a3
commit
9a1894f587
1 changed files with 2 additions and 2 deletions
4
Makefile
4
Makefile
|
@ -221,10 +221,10 @@ depend:
|
|||
install: install-gmqcc install-qcvm install-doc
|
||||
install-gmqcc: $(GMQCC)
|
||||
install -d -m755 $(DESTDIR)$(BINDIR)
|
||||
install -m755 $(GMQCC) $(DESTDIR)$(BINDIR)/gmqcc
|
||||
install -m755 $(GMQCC) $(DESTDIR)$(BINDIR)/$(GMQCC)
|
||||
install-qcvm: $(QCVM)
|
||||
install -d -m755 $(DESTDIR)$(BINDIR)
|
||||
install -m755 $(QCVM) $(DESTDIR)$(BINDIR)/qcvm
|
||||
install -m755 $(QCVM) $(DESTDIR)$(BINDIR)/$(QCVM)
|
||||
install-doc:
|
||||
install -d -m755 $(DESTDIR)$(MANDIR)/man1
|
||||
install -m644 doc/gmqcc.1 $(DESTDIR)$(MANDIR)/man1/
|
||||
|
|
Loading…
Reference in a new issue