diff options
| author | Richard M. Stallman | 1991-01-05 17:23:40 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1991-01-05 17:23:40 +0000 |
| commit | 4ddcbb51f2fcb3455027b370a26efbd977b3913e (patch) | |
| tree | bb6b0e81e694ceea4078ffbc1f807a143b061883 | |
| parent | b45433b39e5b46fc6bf33c3b0213c3f7e04fafc0 (diff) | |
| download | emacs-4ddcbb51f2fcb3455027b370a26efbd977b3913e.tar.gz emacs-4ddcbb51f2fcb3455027b370a26efbd977b3913e.zip | |
*** empty log message ***
| -rw-r--r-- | src/Makefile.in | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/Makefile.in b/src/Makefile.in index 350753fb77a..2b4c362a7a4 100644 --- a/src/Makefile.in +++ b/src/Makefile.in | |||
| @@ -1,5 +1,8 @@ | |||
| 1 | MAKE = make | ||
| 2 | # BSD doesn't have it as a default. | ||
| 3 | |||
| 4 | CC = gcc | ||
| 1 | CPP = $(CC) -E | 5 | CPP = $(CC) -E |
| 2 | MAKE = make # BSD doesn't have it as a default. | ||
| 3 | #Note: an alternative is CPP = /lib/cpp | 6 | #Note: an alternative is CPP = /lib/cpp |
| 4 | 7 | ||
| 5 | all: xmakefile doall | 8 | all: xmakefile doall |
| @@ -28,7 +31,7 @@ dotemacs: | |||
| 28 | # If you have a problem with cc -E here, changing | 31 | # If you have a problem with cc -E here, changing |
| 29 | # the definition of CPP above may fix it. | 32 | # the definition of CPP above may fix it. |
| 30 | xmakefile: ymakefile config.h | 33 | xmakefile: ymakefile config.h |
| 31 | rm -f xmakefile | 34 | -rm -f xmakefile junk.c |
| 32 | cp ymakefile junk.c | 35 | cp ymakefile junk.c |
| 33 | $(CPP) junk.c | sed -e 's/^#.*//' -e 's/^[ \f\t][ \f\t]*$$//' -e 's/^ / /' | \ | 36 | $(CPP) junk.c | sed -e 's/^#.*//' -e 's/^[ \f\t][ \f\t]*$$//' -e 's/^ / /' | \ |
| 34 | sed -n -e '/^..*$$/p' > xmakefile | 37 | sed -n -e '/^..*$$/p' > xmakefile |