Skip to content
Snippets Groups Projects
Commit f8a84c42 authored by Raymond Toy's avatar Raymond Toy
Browse files

Move the vpath stuff to GNUMakefile from the configs.

These paths don't depend on the config so GNUMakefile is the right
place.
parent 3dd74e81
No related branches found
No related tags found
No related merge requests found
# -*- Mode: makefile -*- # -*- Mode: makefile -*-
PATH1 = ../../src/lisp
vpath %.h $(PATH1)
vpath %.c $(PATH1)
vpath %.S $(PATH1)
CPPFLAGS = -I. -I$(PATH1) CPPFLAGS = -I. -I$(PATH1)
# For Mac OS X 10.2, gcc3 is appropriate. For 10.4, gcc (gcc 4.0) is ok. But # For Mac OS X 10.2, gcc3 is appropriate. For 10.4, gcc (gcc 4.0) is ok. But
......
...@@ -2,19 +2,6 @@ ...@@ -2,19 +2,6 @@
# Common configuration for sparc/solaris builds. # Common configuration for sparc/solaris builds.
# These tell gmake where to look for .h, .c and .S files. Mostly for
# building the binary outside of the src tree.
PATH1 = ../../src/lisp
vpath %.h .:$(PATH1)
vpath %.c .:$(PATH1)
vpath %.S .:$(PATH1)
CMULOCALE = ../../src/i18n/locale
vpath %.pot $(CMULOCALE)
vpath %.po $(CMULOCALE)
vpath %.mo $(CMULOCALE)
CPP_DEFINE_OPTIONS := -DSOLARIS -DSVR4 CPP_DEFINE_OPTIONS := -DSOLARIS -DSVR4
# Enable support for :linkage-table feature. # Enable support for :linkage-table feature.
......
# -*- Mode: makefile -*- # -*- Mode: makefile -*-
# These tell gmake where to look for .h, .c and .S files. Mostly for
# building the binary outside of the src tree.
PATH1 = ../../src/lisp
vpath %.h $(PATH1)
vpath %.c $(PATH1)
vpath %.S $(PATH1)
CMULOCALE = ../../src/i18n/locale
vpath %.pot $(CMULOCALE)
vpath %.po $(CMULOCALE)
vpath %.mo $(CMULOCALE)
CPP_DEFINE_OPTIONS := -Di386 CPP_DEFINE_OPTIONS := -Di386
# Enable support for :linkage-table feature. # Enable support for :linkage-table feature.
......
# $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/lisp/GNUmakefile,v 1.39 2010/10/14 17:47:12 rtoy Exp $ # $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/lisp/GNUmakefile,v 1.39 2010/10/14 17:47:12 rtoy Exp $
# These tell gmake where to look for .h, .c and .S files. Mostly for
# building the binary outside of the src tree.
PATH1 = ../../src/lisp
vpath %.h $(PATH1)
vpath %.c $(PATH1)
vpath %.S $(PATH1)
CMULOCALE = ../../src/i18n/locale
vpath %.pot $(CMULOCALE)
vpath %.po $(CMULOCALE)
vpath %.mo $(CMULOCALE)
all: lisp.nm all: lisp.nm
-include internals.inc -include internals.inc
include Config include Config
...@@ -130,3 +144,4 @@ translations-update: ...@@ -130,3 +144,4 @@ translations-update:
msgfmt -v ../../src/$$po/$$f.po -o ../$$po/$$f.mo; \ msgfmt -v ../../src/$$po/$$f.po -o ../$$po/$$f.mo; \
done; done done; done
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment