diff options
author | zack <zack@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-02-18 15:35:49 +0000 |
---|---|---|
committer | zack <zack@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-02-18 15:35:49 +0000 |
commit | 6d71dc858edbebe104c24737113327fedbd6ad17 (patch) | |
tree | 755ff3010888b5791d0cc4946b458010353a6f78 /gcc/Makefile.in | |
parent | 0abfe611ef04d6f3231626e0645b1fc8650a8c3b (diff) | |
download | gcc-6d71dc858edbebe104c24737113327fedbd6ad17.tar.gz |
1999-02-18 18:32 -0500 Zack Weinberg <zack@rabi.columbia.edu>
* cpplib.c: Kill define of STDC_VALUE. Don't include output.h
or prefix.h. Change CPP_IS_MACRO_BUFFER to not refer to
macro_cleanup.
(GET_ENV_PATH_LIST, PATH_SEPARATOR, STANDARD_INCLUDE_DIR,
predefs, SIZE_TYPE, PTRDIFF_TYPE, WCHAR_TYPE,
CPP_WCHAR_TYPE, USER_LABEL_PREFIX, REGISTER_PREFIX, struct
cpp_pending, version_string, struct default_include,
include_defaults_array, path_include, cpp_options_init,
dump_special_to_buffer, initialize_builtins, cpp_start_read,
cpp_reader_init, nreverse_pending, push_pending, print_help,
cpp_handle_option, cpp_handle_options, cpp_finish,
cpp_cleanup): Move to cppinit.c.
(macro_cleanup, struct arglist, collect_expansion,
create_definition, compare_defs, comp_def_part, ARG_BASE,
struct argdata, macarg, change_newlines, timestamp,
monthnames, special_symbol, unsafe_chars, macroexpand,
push_macro_expansion): Move to cpphash.c.
(quote_string, check_macro_name, cpp_expand_to_buffer,
output_line_command, cpp_undef): Export.
(null_underflow, null_cleanup, handle_directive): Make static.
* cpplib.h: Prototype now-exported functions. Adjust decls of
syntax tables so we can include cpplib.h in cppinit.c.
* cpphash.h: Prototype all functions exported by cpphash.c.
* cppinit.c: Make syntax tables initialized data if possible
(uses GCC designated-initializer extension).
* cppexp.c: Make cpp_lex static.
* Makefile.in: Move -D switches for the various include dirs
from cpplib.o rule to cppinit.o rule. Adjust dependencies.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@25287 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/Makefile.in')
-rw-r--r-- | gcc/Makefile.in | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/gcc/Makefile.in b/gcc/Makefile.in index 8a159b1a7eb..f42fcad3932 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -1970,23 +1970,23 @@ cppmain$(exeext): cppmain.o libcpp.a $(LIBDEPS) cppmain.o: cppmain.c $(CONFIG_H) cpplib.h intl.h machmode.h system.h -cpplib.o: cpplib.c $(CONFIG_H) cpplib.h intl.h machmode.h system.h cpphash.h \ - prefix.h output.h Makefile +cppulp.o: cppulp.c $(CONFIG_H) system.h output.h +cpplib.o: cpplib.c $(CONFIG_H) cpplib.h intl.h machmode.h system.h cpphash.h +cpphash.o: cpphash.c $(CONFIG_H) cpplib.h intl.h machmode.h system.h cpphash.h +cppalloc.o: cppalloc.c $(CONFIG_H) cpplib.h intl.h machmode.h system.h +cpperror.o: cpperror.c $(CONFIG_H) cpplib.h intl.h machmode.h system.h +cppexp.o: cppexp.c $(CONFIG_H) cpplib.h intl.h machmode.h system.h +cppfiles.o: cppfiles.c $(CONFIG_H) cpplib.h intl.h machmode.h system.h + +cppinit.o: cppalloc.c $(CONFIG_H) cpplib.h intl.h machmode.h system.h \ + cpphash.h prefix.h output.h Makefile $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \ -DGCC_INCLUDE_DIR=\"$(libsubdir)/include\" \ -DGPLUSPLUS_INCLUDE_DIR=\"$(gxx_include_dir)\" \ -DLOCAL_INCLUDE_DIR=\"$(includedir)\" \ -DCROSS_INCLUDE_DIR=\"$(gcc_tooldir)/sys-include\" \ -DTOOL_INCLUDE_DIR=\"$(gcc_tooldir)/include\" \ - -c `echo $(srcdir)/cpplib.c | sed 's,^\./,,'` - -cppulp.o: cppulp.c $(CONFIG_H) system.h output.h -cpphash.o: cpphash.c $(CONFIG_H) cpplib.h intl.h machmode.h system.h cpphash.h -cppalloc.o: cppalloc.c $(CONFIG_H) cpplib.h intl.h machmode.h system.h -cpperror.o: cpperror.c $(CONFIG_H) cpplib.h intl.h machmode.h system.h -cppexp.o: cppexp.c $(CONFIG_H) cpplib.h intl.h machmode.h system.h -cppfiles.o: cppfiles.c $(CONFIG_H) cpplib.h intl.h machmode.h system.h -cppinit.o: cppalloc.c $(CONFIG_H) cpplib.h intl.h machmode.h system.h + -c `echo $(srcdir)/cppinit.c | sed 's,^\./,,'` # Note for the stamp targets, we run the program `true' instead of # having an empty command (nothing following the semicolon). |