From d66659c6067ec18022718457bcf7c73145cf7b38 Mon Sep 17 00:00:00 2001 From: Dave Murphy Date: Fri, 26 Dec 2014 15:40:46 +0000 Subject: allow building in subdirectory or outside source directory --- src/Makefile.am | 6 +++--- src/doom/Makefile.am | 2 +- src/heretic/Makefile.am | 8 ++++---- src/hexen/Makefile.am | 6 +++--- src/resource.rc.in | 4 ++-- src/setup-res.rc.in | 4 ++-- src/setup/Makefile.am | 2 +- src/strife/Makefile.am | 2 +- 8 files changed, 17 insertions(+), 17 deletions(-) (limited to 'src') diff --git a/src/Makefile.am b/src/Makefile.am index 16496d88..1e54824c 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -18,9 +18,9 @@ SETUP_BINARIES = @PROGRAM_PREFIX@doom-setup$(EXEEXT) \ execgames_SCRIPTS = $(SETUP_BINARIES) -AM_CFLAGS = -I$(top_builddir)/textscreen \ - -I$(top_builddir)/opl \ - -I$(top_builddir)/pcsound \ +AM_CFLAGS = -I$(top_srcdir)/textscreen \ + -I$(top_srcdir)/opl \ + -I$(top_srcdir)/pcsound \ @SDLMIXER_CFLAGS@ @SDLNET_CFLAGS@ # Common source files used by absolutely everything: diff --git a/src/doom/Makefile.am b/src/doom/Makefile.am index 74ba7014..e2ce86b4 100644 --- a/src/doom/Makefile.am +++ b/src/doom/Makefile.am @@ -1,4 +1,4 @@ -AM_CFLAGS = -I.. @SDL_CFLAGS@ @SDLMIXER_CFLAGS@ @SDLNET_CFLAGS@ +AM_CFLAGS = -I$(top_srcdir)/src @SDL_CFLAGS@ @SDLMIXER_CFLAGS@ @SDLNET_CFLAGS@ noinst_LIBRARIES=libdoom.a diff --git a/src/heretic/Makefile.am b/src/heretic/Makefile.am index bf834733..88ccc7b8 100644 --- a/src/heretic/Makefile.am +++ b/src/heretic/Makefile.am @@ -1,6 +1,6 @@ -AM_CFLAGS=-I.. \ - -I$(top_builddir)/textscreen \ +AM_CFLAGS=-I$(top_srcdir)/src \ + -I$(top_srcdir)/textscreen \ @SDL_CFLAGS@ @SDLMIXER_CFLAGS@ @SDLNET_CFLAGS@ noinst_LIBRARIES=libheretic.a @@ -51,11 +51,11 @@ r_segs.c \ r_things.c \ sb_bar.c \ sounds.c sounds.h \ -s_sound.c s_sound.h +s_sound.c s_sound.h EXTRA_DIST= \ i_sound.c \ -i_ibm.c +i_ibm.c FEATURE_DEHACKED_SOURCE_FILES = \ deh_ammo.c \ diff --git a/src/hexen/Makefile.am b/src/hexen/Makefile.am index e8ca8b98..b3953ce6 100644 --- a/src/hexen/Makefile.am +++ b/src/hexen/Makefile.am @@ -1,4 +1,4 @@ -AM_CFLAGS=-I.. @SDL_CFLAGS@ @SDLMIXER_CFLAGS@ @SDLNET_CFLAGS@ +AM_CFLAGS=-I$(top_srcdir)/src @SDL_CFLAGS@ @SDLMIXER_CFLAGS@ @SDLNET_CFLAGS@ noinst_LIBRARIES=libhexen.a @@ -58,10 +58,10 @@ sounds.c sounds.h \ st_start.c st_start.h \ sv_save.c \ textdefs.h \ - xddefs.h + xddefs.h EXTRA_DIST= \ i_ibm.c \ -i_sound.c +i_sound.c libhexen_a_SOURCES=$(SOURCE_FILES) diff --git a/src/resource.rc.in b/src/resource.rc.in index ad81e1a5..51f16f43 100644 --- a/src/resource.rc.in +++ b/src/resource.rc.in @@ -1,6 +1,6 @@ -1 ICON "../data/doom.ico" +1 ICON "@top_srcdir@/data/doom.ico" -CREATEPROCESS_MANIFEST_RESOURCE_ID RT_MANIFEST "manifest.xml" +CREATEPROCESS_MANIFEST_RESOURCE_ID RT_MANIFEST "@top_srcdir@/src/manifest.xml" 1 VERSIONINFO PRODUCTVERSION @WINDOWS_RC_VERSION@ diff --git a/src/setup-res.rc.in b/src/setup-res.rc.in index d82e136f..2be914f9 100644 --- a/src/setup-res.rc.in +++ b/src/setup-res.rc.in @@ -1,6 +1,6 @@ -1 ICON "../data/setup.ico" +1 ICON "@top_srcdir@/data/setup.ico" -1 24 MOVEABLE PURE "setup/setup-manifest.xml" +1 24 MOVEABLE PURE "@top_builddir@/src/setup/setup-manifest.xml" 1 VERSIONINFO PRODUCTVERSION @WINDOWS_RC_VERSION@ diff --git a/src/setup/Makefile.am b/src/setup/Makefile.am index 1a1e1ccb..0adc90d7 100644 --- a/src/setup/Makefile.am +++ b/src/setup/Makefile.am @@ -3,7 +3,7 @@ gamesdir = $(prefix)/games AM_CFLAGS = @SDL_CFLAGS@ \ @SDLMIXER_CFLAGS@ \ - -I$(top_builddir)/textscreen -I.. + -I$(top_srcdir)/textscreen -I$(top_srcdir)/src noinst_LIBRARIES = libsetup.a diff --git a/src/strife/Makefile.am b/src/strife/Makefile.am index df1f7bb0..271fcc20 100644 --- a/src/strife/Makefile.am +++ b/src/strife/Makefile.am @@ -1,4 +1,4 @@ -AM_CFLAGS = -I.. @SDL_CFLAGS@ @SDLMIXER_CFLAGS@ @SDLNET_CFLAGS@ +AM_CFLAGS = -I$(top_srcdir)/src @SDL_CFLAGS@ @SDLMIXER_CFLAGS@ @SDLNET_CFLAGS@ noinst_LIBRARIES=libstrife.a -- cgit v1.2.3