diff options
| author | Adrian Robert | 2008-07-16 23:24:46 +0000 |
|---|---|---|
| committer | Adrian Robert | 2008-07-16 23:24:46 +0000 |
| commit | 122e9f8f29a92b6038b65a3b4f6ef31ad96e2cd5 (patch) | |
| tree | 29e83f0a25f866bd8b885a5a811360dcf0eeeb87 /src/Makefile.in | |
| parent | cf7238adf9f3bcddb60d422c470b58605a1b8bad (diff) | |
| download | emacs-122e9f8f29a92b6038b65a3b4f6ef31ad96e2cd5.tar.gz emacs-122e9f8f29a92b6038b65a3b4f6ef31ad96e2cd5.zip | |
various small cleanups detailed in changelogs
Diffstat (limited to 'src/Makefile.in')
| -rw-r--r-- | src/Makefile.in | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/Makefile.in b/src/Makefile.in index 8f2c2f8805f..a715b83be28 100644 --- a/src/Makefile.in +++ b/src/Makefile.in | |||
| @@ -113,7 +113,7 @@ SHELL=/bin/sh | |||
| 113 | #endif | 113 | #endif |
| 114 | 114 | ||
| 115 | /* Under GNUstep, putting libc on the link line causes problems. */ | 115 | /* Under GNUstep, putting libc on the link line causes problems. */ |
| 116 | #ifdef GNUSTEP | 116 | #ifdef NS_IMPL_GNUSTEP |
| 117 | #define LIB_STANDARD | 117 | #define LIB_STANDARD |
| 118 | #endif | 118 | #endif |
| 119 | 119 | ||
| @@ -234,7 +234,7 @@ STARTFILES = START_FILES | |||
| 234 | #endif /* not ORDINARY_LINK */ | 234 | #endif /* not ORDINARY_LINK */ |
| 235 | 235 | ||
| 236 | 236 | ||
| 237 | #ifdef GNUSTEP | 237 | #ifdef NS_IMPL_GNUSTEP |
| 238 | /* Pull in stuff from GNUstep-make. */ | 238 | /* Pull in stuff from GNUstep-make. */ |
| 239 | FOUNDATION_LIB=gnu | 239 | FOUNDATION_LIB=gnu |
| 240 | GUI_LIB=gnu | 240 | GUI_LIB=gnu |
| @@ -535,13 +535,13 @@ emacsappsrc = ${srcdir}/../mac/Emacs.app/ | |||
| 535 | NS_OBJ= nsterm.o nsfns.o nsmenu.o nsselect.o nsimage.o nsfont.o \ | 535 | NS_OBJ= nsterm.o nsfns.o nsmenu.o nsselect.o nsimage.o nsfont.o \ |
| 536 | fontset.o fringe.o image.o | 536 | fontset.o fringe.o image.o |
| 537 | emacsapp = $(PWD)/../nextstep/build/Emacs.app/ | 537 | emacsapp = $(PWD)/../nextstep/build/Emacs.app/ |
| 538 | #ifdef GNUSTEP | 538 | #ifdef NS_IMPL_GNUSTEP |
| 539 | emacsappsrc = ${srcdir}/../nextstep/GNUstep/Emacs.base | 539 | emacsappsrc = ${srcdir}/../nextstep/GNUstep/Emacs.base |
| 540 | emacsbindir = $(emacsapp) | 540 | emacsbindir = $(emacsapp) |
| 541 | #else | 541 | #else |
| 542 | emacsappsrc = ${srcdir}/../nextstep/Cocoa/Emacs.base | 542 | emacsappsrc = ${srcdir}/../nextstep/Cocoa/Emacs.base |
| 543 | emacsbindir = $(emacsapp)/Contents/MacOS/ | 543 | emacsbindir = $(emacsapp)/Contents/MacOS/ |
| 544 | #endif /* GNUSTEP */ | 544 | #endif /* NS_IMPL_GNUSTEP */ |
| 545 | #endif /* HAVE_NS */ | 545 | #endif /* HAVE_NS */ |
| 546 | 546 | ||
| 547 | #ifdef HAVE_WINDOW_SYSTEM | 547 | #ifdef HAVE_WINDOW_SYSTEM |
| @@ -969,7 +969,7 @@ ${libsrc}make-docfile${EXEEXT}: | |||
| 969 | 969 | ||
| 970 | temacs${EXEEXT}: $(LOCALCPP) $(STARTFILES) stamp-oldxmenu ${obj} ${otherobj} OBJECTS_MACHINE prefix-args${EXEEXT} | 970 | temacs${EXEEXT}: $(LOCALCPP) $(STARTFILES) stamp-oldxmenu ${obj} ${otherobj} OBJECTS_MACHINE prefix-args${EXEEXT} |
| 971 | echo "${obj} ${otherobj} " OBJECTS_MACHINE > buildobj.lst | 971 | echo "${obj} ${otherobj} " OBJECTS_MACHINE > buildobj.lst |
| 972 | #ifdef GNUSTEP | 972 | #ifdef NS_IMPL_GNUSTEP |
| 973 | $(CC) -rdynamic YMF_PASS_LDFLAGS (${TEMACS_LDFLAGS}) -o temacs ${obj} ${otherobj} OBJECTS_MACHINE ${LIBES} | 973 | $(CC) -rdynamic YMF_PASS_LDFLAGS (${TEMACS_LDFLAGS}) -o temacs ${obj} ${otherobj} OBJECTS_MACHINE ${LIBES} |
| 974 | #else | 974 | #else |
| 975 | $(LD) YMF_PASS_LDFLAGS (${STARTFLAGS} ${TEMACS_LDFLAGS}) $(LDFLAGS) \ | 975 | $(LD) YMF_PASS_LDFLAGS (${STARTFLAGS} ${TEMACS_LDFLAGS}) $(LDFLAGS) \ |
| @@ -1355,7 +1355,7 @@ mostlyclean: | |||
| 1355 | rm -f buildobj.lst | 1355 | rm -f buildobj.lst |
| 1356 | clean: mostlyclean | 1356 | clean: mostlyclean |
| 1357 | rm -f emacs-*.*.*${EXEEXT} emacs${EXEEXT} | 1357 | rm -f emacs-*.*.*${EXEEXT} emacs${EXEEXT} |
| 1358 | #ifdef GNUSTEP | 1358 | #ifdef NS_IMPL_GNUSTEP |
| 1359 | rm -f *.d | 1359 | rm -f *.d |
| 1360 | #endif | 1360 | #endif |
| 1361 | /* bootstrap-clean is used to clean up just before a bootstrap. | 1361 | /* bootstrap-clean is used to clean up just before a bootstrap. |