Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
cmucl
cmucl
Commits
f8a84c42
Commit
f8a84c42
authored
Jan 03, 2015
by
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
Changes
4
Hide whitespace changes
Inline
Side-by-side
src/lisp/Config.ppc_darwin
View file @
f8a84c42
# -*- Mode: makefile -*-
PATH1
=
../../src/lisp
vpath
%.h
$(PATH1)
vpath
%.c
$(PATH1)
vpath
%.S
$(PATH1)
CPPFLAGS
=
-I
.
-I
$(PATH1)
# For Mac OS X 10.2, gcc3 is appropriate. For 10.4, gcc (gcc 4.0) is ok. But
...
...
src/lisp/Config.sparc_common
View file @
f8a84c42
...
...
@@ -2,19 +2,6 @@
# 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
# Enable support for :linkage-table feature.
...
...
src/lisp/Config.x86_common
View file @
f8a84c42
# -*- 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
# Enable support for :linkage-table feature.
...
...
src/lisp/GNUmakefile
View file @
f8a84c42
# $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
-include
internals.inc
include
Config
...
...
@@ -130,3 +144,4 @@ translations-update:
msgfmt
-v
../../src/
$$
po/
$$
f.po
-o
../
$$
po/
$$
f.mo
;
\
done
;
done
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment