diff options
author | K. Richard Pixley <rich@cygnus> | 1992-02-15 21:13:03 +0000 |
---|---|---|
committer | K. Richard Pixley <rich@cygnus> | 1992-02-15 21:13:03 +0000 |
commit | 3340f7e5fdd11b6c544714500fca870707793fd0 (patch) | |
tree | c8df7d465111ee74f58751a9c604b42060368f44 /gas/Makefile.in | |
parent | a87b3269340cca83c2197909ade48e28023b9cfd (diff) | |
download | gdb-3340f7e5fdd11b6c544714500fca870707793fd0.zip gdb-3340f7e5fdd11b6c544714500fca870707793fd0.tar.gz gdb-3340f7e5fdd11b6c544714500fca870707793fd0.tar.bz2 |
White space and comment changes. #ifdef __STDC__ becomes #if __STDC__
== 1. Get the declarations right in listing.[hc].
Diffstat (limited to 'gas/Makefile.in')
-rw-r--r-- | gas/Makefile.in | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/gas/Makefile.in b/gas/Makefile.in index c557e1c..2759503 100644 --- a/gas/Makefile.in +++ b/gas/Makefile.in @@ -43,7 +43,7 @@ man6dir = $(mandir)/man6 man7dir = $(mandir)/man7 man8dir = $(mandir)/man8 man9dir = $(mandir)/man9 -infodir = $(prefix)/info +infodir = $(datadir)/info includedir = $(prefix)/include docdir = $(datadir)/doc @@ -135,6 +135,7 @@ REAL_SOURCES = \ $(srcdir)/symbols.c \ $(srcdir)/version.c \ $(srcdir)/write.c \ + $(srcdir)/listing.c \ $(srcdir)/xmalloc.c \ $(srcdir)/xrealloc.c @@ -200,6 +201,7 @@ OBJS = \ symbols.o \ version.o \ write.o \ + listing.o \ xmalloc.o \ xrealloc.o @@ -216,11 +218,12 @@ install-info: fake-as: force - rm -f ./as.new cp /bin/as ./fake-as + cp ./fake-as ./as.new # Now figure out from those variables how to compile and link. # This is the variable actually used when we compile. -ALL_CFLAGS = $(INTERNAL_CFLAGS) $(CFLAGS) $(HDEFINES) $(TDEFINES) +ALL_CFLAGS = -g $(INTERNAL_CFLAGS) $(CFLAGS) $(HDEFINES) $(TDEFINES) # Even if ALLOCA is set, don't use it if compiling with GCC. USE_ALLOCA= `if [ x"${CC}" = x"${OLDCC}" ] ; then echo ${ALLOCA}; else true; fi` @@ -333,6 +336,9 @@ input-scrub.o : input-scrub.c /usr/include/errno.h /usr/include/sys/errno.h \ targ-cpu.h struc-symbol.h \ write.h flonum.h bignum.h expr.h frags.h hash.h read.h symbols.h tc.h obj.h \ input-file.h +listing.o : listing.c as.h host.h targ-env.h flonum.h bignum.h \ + listing.h obj-format.h targ-cpu.h struc-symbol.h write.h expr.h \ + frags.h hash.h read.h symbols.h tc.h obj.h input-file.h messages.o : messages.c as.h host.h targ-env.h obj-format.h \ targ-cpu.h struc-symbol.h \ write.h flonum.h bignum.h expr.h frags.h hash.h read.h symbols.h tc.h obj.h @@ -411,12 +417,7 @@ $(srcdir)/as.info: $(srcdir)/doc/as.texinfo # `realclean' also deletes everything that could be regenerated automatically. clean: - -rm -f $(STAGESTUFF) -# Delete the temporary source copies for cross compilation. - -rm -f $(HOST_PREFIX_1)alloca.c $(HOST_PREFIX_1)malloc.c - -rm -f $(HOST_PREFIX_1)obstack.c -# Delete the stamp files except stamp-gnulib2. - -rm -f core + -rm -f $(STAGESTUFF) $(HOST_PREFIX_1)alloca.c $(HOST_PREFIX_1)malloc.c $(HOST_PREFIX_1)obstack.c core # Like clean but also delete the links made to configure gas. cleanconfig: clean |