diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2017-03-31 06:23:14 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2017-03-31 06:23:14 -0700 |
commit | cfce29352e4a2fd05bfb110c0ef49ef760096f69 (patch) | |
tree | f234e0a52b19584c49819f467e2500d62a7733f0 /Makefile | |
parent | 118cff9ecb669e0beea65ca9a31357d643ee3d27 (diff) | |
download | txr-cfce29352e4a2fd05bfb110c0ef49ef760096f69.tar.gz txr-cfce29352e4a2fd05bfb110c0ef49ef760096f69.tar.bz2 txr-cfce29352e4a2fd05bfb110c0ef49ef760096f69.zip |
Get rid of config/ directory.
We revert back to config.h, config.make and config.log
just being in the root of the build directory, rather than
in a config/ subdirectory, like it was until mid 2014.
That change was done for the sake of the tainting problem:
a build directory picking up the wrong config.h from a
source directory that is itself in the a configured state.
* Makefile: Include config.make rather than
config/config.make.
(TXR_CFLAGS): Remove config directory from include file
search path.
(OBJS, EXTRA_OBJS, y.tab.c, y.tab.h, lex.yy.c): Dependencies
on config.h and config.make adjusted to point to new location.
(distclean): Use rm -f on config.*, not rm -rf; we don't
expect there to be a directory matching that pattern.
Remove config.h, config.make and config.log rather than
config directory. Extend the generic distclean to remove
opt and dbg, because this change will trigger its use
and lingering .d files in opt and dbg will break the build.
Remove txr-win.exe and txr-dbg-win.exe in generic distclean.
* configure (conf_dir, config_h, config_make, config_log):
Variables gone, replaced by hard-coded strings everywhere.
Generate config.make, config.log and config.h in the current
directory rather than a subdirectory. Do not generate a
conf_dir variable into config.make.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 19 |
1 files changed, 9 insertions, 10 deletions
@@ -24,12 +24,11 @@ # OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --include config/config.make +-include config.make VERBOSE := TXR_CFLAGS := $(CFLAGS) -TXR_CFLAGS += -iquote $(conf_dir) \ - -iquote . $(if $(top_srcdir), -iquote $(top_srcdir)) \ +TXR_CFLAGS += -iquote . $(if $(top_srcdir), -iquote $(top_srcdir)) \ $(LANG_FLAGS) $(DIAG_FLAGS) \ $(DBG_FLAGS) $(PLATFORM_CFLAGS) $(EXTRA_FLAGS) TXR_CFLAGS += $(filter-out $(REMOVE_FLAGS),$(TXR_CFLAGS)) @@ -212,14 +211,13 @@ endef -include $(OBJS:.o=.d) $(OBJS:.o=.v) # Add dependencies -$(call DEP,$(OBJS) $(EXTRA_OBJS-y),\ - $(conf_dir)/config.make $(conf_dir)/config.h) +$(call DEP,$(OBJS) $(EXTRA_OBJS-y),config.make config.h) $(eval $(foreach item,lex.yy.o txr.o match.o parser.o,\ $(call DEP,opt/$(item) dbg/$(item),y.tab.h))) $(eval $(foreach item,y.tab.c y.tab.h lex.yy.c,\ - $(call DEP,$(item),$(conf_dir)/config.make $(conf_dir)/config.h))) + $(call DEP,$(item),config.make config.h))) lex.yy.c: $(top_srcdir)parser.l $(call ABBREV,LEX) @@ -277,9 +275,10 @@ rebuild clean repatch: notconfigured distclean: $(V)echo "executing generic cleanup for non-configured directory" - rm -f txr txr.exe txr-dbg txr-dbg.exe y.tab.c lex.yy.c y.tab.h y.output - rm -rf config - rm -rf config.* + rm -f txr txr.exe txr-dbg txr-dbg.exe txr-win.exe txr-win-dbg.exe + rm -rf y.tab.c lex.yy.c y.tab.h y.output + rm -rf config opt dbg + rm -f config.* rm -rf mpi-1.?.? else rebuild: clean repatch $(PROG) @@ -290,7 +289,7 @@ clean: conftest.clean tests.clean rm -rf opt dbg $(EXTRA_OBJS-y) distclean: clean - rm -rf $(conf_dir) + rm -f config.h config.make config.log endif TESTS_TMP := txr.test.out |