mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-06-14 12:31:25 +00:00
*** empty log message ***
This commit is contained in:
parent
b45433b39e
commit
4ddcbb51f2
1 changed files with 5 additions and 2 deletions
|
|
@ -1,5 +1,8 @@
|
|||
MAKE = make
|
||||
# BSD doesn't have it as a default.
|
||||
|
||||
CC = gcc
|
||||
CPP = $(CC) -E
|
||||
MAKE = make # BSD doesn't have it as a default.
|
||||
#Note: an alternative is CPP = /lib/cpp
|
||||
|
||||
all: xmakefile doall
|
||||
|
|
@ -28,7 +31,7 @@ dotemacs:
|
|||
# If you have a problem with cc -E here, changing
|
||||
# the definition of CPP above may fix it.
|
||||
xmakefile: ymakefile config.h
|
||||
rm -f xmakefile
|
||||
-rm -f xmakefile junk.c
|
||||
cp ymakefile junk.c
|
||||
$(CPP) junk.c | sed -e 's/^#.*//' -e 's/^[ \f\t][ \f\t]*$$//' -e 's/^ / /' | \
|
||||
sed -n -e '/^..*$$/p' > xmakefile
|
||||
|
|
|
|||
Loading…
Reference in a new issue