aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Makefile.in7
-rw-r--r--src/m/hp9000s300.h5
-rw-r--r--src/m/ibmps2-aix.h5
-rw-r--r--src/m/mips.h5
-rw-r--r--src/m/sparc.h5
5 files changed, 3 insertions, 24 deletions
diff --git a/Makefile.in b/Makefile.in
index 2f55df05ba..8badd9148a 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -255,10 +255,9 @@ FRC:
clean mostlyclean:
cd src; make clean
- cd lib-src; make clean
- if [ `/bin/pwd` != `(cd ${DESTDIR}${LIBDIR}; /bin/pwd)` ] ; then \
- cd etc; make clean; \
- cd arch-lib; make clean; \
+ if [ `/bin/pwd` != `(cd ${emacsdir}; /bin/pwd)` ] ; then \
+ (cd etc; make clean); \
+ (cd lib-src; make clean); \
else true; \
fi
cd oldXMenu; make clean
diff --git a/src/m/hp9000s300.h b/src/m/hp9000s300.h
index 1e6c232096..233f6f7b20 100644
--- a/src/m/hp9000s300.h
+++ b/src/m/hp9000s300.h
@@ -68,11 +68,6 @@ NOTE-END */
/* #define WORD_MACHINE */
-/* Define how to take a char and sign-extend into an int.
- On machines where char is signed, this is a no-op. */
-
-#define SIGN_EXTEND_CHAR(c) (c)
-
/* Now define a symbol for the cpu type, if your compiler
does not define it automatically. */
diff --git a/src/m/ibmps2-aix.h b/src/m/ibmps2-aix.h
index 1503d3e3c9..02deefe97d 100644
--- a/src/m/ibmps2-aix.h
+++ b/src/m/ibmps2-aix.h
@@ -51,11 +51,6 @@ NOTE-END */
/* #define WORD_MACHINE */
-/* Define how to take a char and sign-extend into an int.
- On machines where char is signed, this is a no-op. */
-
-#define SIGN_EXTEND_CHAR(c) ((signed char) (c))
-
/* Now define a symbol for the cpu type, if your compiler
does not define it automatically:
Ones defined so far include vax, m68000, ns16000, pyramid,
diff --git a/src/m/mips.h b/src/m/mips.h
index d797540c4c..e41f11f8fe 100644
--- a/src/m/mips.h
+++ b/src/m/mips.h
@@ -51,11 +51,6 @@ NOTE-END */
#undef WORD_MACHINE
-/* Define how to take a char and sign-extend into an int.
- On machines where char is signed, this is a no-op. */
-
-#define SIGN_EXTEND_CHAR(c) ((signed char)(c))
-
/* Now define a symbol for the cpu type, if your compiler
does not define it automatically:
Ones defined so far include vax, m68000, ns16000, pyramid,
diff --git a/src/m/sparc.h b/src/m/sparc.h
index b06fa35522..f163403299 100644
--- a/src/m/sparc.h
+++ b/src/m/sparc.h
@@ -44,11 +44,6 @@ NOTE-END */
#define NO_ARG_ARRAY
-/* Define how to take a char and sign-extend into an int.
- On machines where char is signed, this is a no-op. */
-
-#define SIGN_EXTEND_CHAR(c) (c)
-
/* Say this machine is a sparc */
#ifndef sparc