mirror of
https://github.com/UberGames/lilium-voyager.git
synced 2025-03-04 23:30:56 +00:00
* Reintroduced the copyfiles rule
This commit is contained in:
parent
1ad7f9cff1
commit
429e59a53c
1 changed files with 22 additions and 1 deletions
|
@ -116,7 +116,7 @@ ifeq ($(PLATFORM),linux)
|
||||||
|
|
||||||
# bk001205: no mo' -I/usr/include/glide, no FX
|
# bk001205: no mo' -I/usr/include/glide, no FX
|
||||||
# bk001205: no mo' -Dstricmp=strcasecmp, see q_shared.h
|
# bk001205: no mo' -Dstricmp=strcasecmp, see q_shared.h
|
||||||
BASE_CFLAGS = -pipe -Wall -Wimplicit -Wstrict-prototypes
|
BASE_CFLAGS = -pipe -Wall -Wimplicit -Wstrict-prototypes -Werror
|
||||||
#BASE_CFLAGS += -Werror # Disabled due to #warning usage.
|
#BASE_CFLAGS += -Werror # Disabled due to #warning usage.
|
||||||
# rcg010216: DLL_ONLY for PPC
|
# rcg010216: DLL_ONLY for PPC
|
||||||
ifeq ($(strip $(DLL_ONLY)),true)
|
ifeq ($(strip $(DLL_ONLY)),true)
|
||||||
|
@ -1535,6 +1535,27 @@ $(B)/missionpack/ui/q_shared.o : $(GDIR)/q_shared.c; $(DO_SHLIB_CC) -DMISSIONPA
|
||||||
# MISC
|
# MISC
|
||||||
#############################################################################
|
#############################################################################
|
||||||
|
|
||||||
|
copyfiles:
|
||||||
|
@if [ ! -d $(COPYDIR) ]; then echo "You need to set COPYDIR to where you installed Quake III!"; false; fi
|
||||||
|
-mkdir -p -m 0755 $(COPYDIR)
|
||||||
|
install -s -m 0755 $(BR)/linuxquake3 $(COPYDIR)/quake3
|
||||||
|
#install -s -m 0755 $(BR)/linuxquake3-smp $(COPYDIR)/quake3-smp
|
||||||
|
install -s -m 0755 $(BR)/linuxq3ded $(COPYDIR)/q3ded
|
||||||
|
-mkdir -p -m 0755 $(COPYDIR)/baseq3
|
||||||
|
install -s -m 0755 $(BR)/baseq3/cgame$(ARCH).$(SHLIBEXT) \
|
||||||
|
$(COPYDIR)/baseq3/.
|
||||||
|
install -s -m 0755 $(BR)/baseq3/qagame$(ARCH).$(SHLIBEXT) \
|
||||||
|
$(COPYDIR)/baseq3/.
|
||||||
|
install -s -m 0755 $(BR)/baseq3/ui$(ARCH).$(SHLIBEXT) \
|
||||||
|
$(COPYDIR)/baseq3/.
|
||||||
|
-mkdir -p -m 0755 $(COPYDIR)/missionpack
|
||||||
|
install -s -m 0755 $(BR)/missionpack/cgame$(ARCH).$(SHLIBEXT) \
|
||||||
|
$(COPYDIR)/missionpack/.
|
||||||
|
install -s -m 0755 $(BR)/missionpack/qagame$(ARCH).$(SHLIBEXT) \
|
||||||
|
$(COPYDIR)/missionpack/.
|
||||||
|
install -s -m 0755 $(BR)/missionpack/ui$(ARCH).$(SHLIBEXT) \
|
||||||
|
$(COPYDIR)/missionpack/.
|
||||||
|
|
||||||
# TTimo: FIXME: doesn't clean the binary and .so
|
# TTimo: FIXME: doesn't clean the binary and .so
|
||||||
|
|
||||||
clean:clean-debug clean-release
|
clean:clean-debug clean-release
|
||||||
|
|
Loading…
Reference in a new issue