diff options
Diffstat (limited to 'src')
| -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 d2b558b0321..140a3714eb6 100644 --- a/src/Makefile.in +++ b/src/Makefile.in | |||
| @@ -714,8 +714,11 @@ temacs: MAKE_PARALLEL $(LOCALCPP) $(SHORT) $(STARTFILES) $(OLDXMENU) ${obj} ${ot | |||
| 714 | -o temacs ${STARTFILES} ${obj} ${otherobj} \ | 714 | -o temacs ${STARTFILES} ${obj} ${otherobj} \ |
| 715 | OBJECTS_SYSTEM OBJECTS_MACHINE ${LIBES} | 715 | OBJECTS_SYSTEM OBJECTS_MACHINE ${LIBES} |
| 716 | 716 | ||
| 717 | /* We don't use ALL_LDFLAGS because LD_SWITCH_SYSTEM and LD_SWITCH_MACHINE | ||
| 718 | often contain options that have to do with using Emacs's crt0, | ||
| 719 | which are only good with temacs. */ | ||
| 717 | prefix-args: prefix-args.c $(config_h) | 720 | prefix-args: prefix-args.c $(config_h) |
| 718 | $(CC) $(ALL_CFLAGS) $(ALL_LDFLAGS) ${srcdir}/prefix-args.c -o prefix-args | 721 | $(CC) $(ALL_CFLAGS) $(LDFLAGS) ${srcdir}/prefix-args.c -o prefix-args |
| 719 | 722 | ||
| 720 | /* These are needed for C compilation, on the systems that need them */ | 723 | /* These are needed for C compilation, on the systems that need them */ |
| 721 | #ifdef NEED_CPP | 724 | #ifdef NEED_CPP |
| @@ -1003,7 +1006,7 @@ relock: | |||
| 1003 | ctagsfiles = [a-zA-Z]*.[hc] | 1006 | ctagsfiles = [a-zA-Z]*.[hc] |
| 1004 | lisptagsfiles = ../lisp/[a-zA-Z]*.el | 1007 | lisptagsfiles = ../lisp/[a-zA-Z]*.el |
| 1005 | TAGS: $(ctagsfiles) | 1008 | TAGS: $(ctagsfiles) |
| 1006 | export DIR=`pwd`; cd ${srcdir}; \ | 1009 | export DIR; DIR=`pwd`; cd ${srcdir}; \ |
| 1007 | $$DIR/../lib-src/etags --include=../lisp/TAGS \ | 1010 | $$DIR/../lib-src/etags --include=../lisp/TAGS \ |
| 1008 | --regex='/[ ]*DEFVAR_[A-Z_ (]+"\([^"]+\)"/' $(ctagsfiles) | 1011 | --regex='/[ ]*DEFVAR_[A-Z_ (]+"\([^"]+\)"/' $(ctagsfiles) |
| 1009 | ${lispsource}TAGS: ${lispsource}$(lisptagsfiles) | 1012 | ${lispsource}TAGS: ${lispsource}$(lisptagsfiles) |