diff options
author | nop <nop> | 2000-01-11 01:54:05 +0000 |
---|---|---|
committer | nop <nop> | 2000-01-11 01:54:05 +0000 |
commit | a1d4ecb3e4a8fbb233f3e5d1c036e6c19319af9d (patch) | |
tree | 08fb18d9056abf042dc6b274298c07116692a473 /Makefile.in | |
parent | 1bea304a96a22ca689993b588d14ff3a5d4bcca8 (diff) | |
download | moo-a1d4ecb3e4a8fbb233f3e5d1c036e6c19319af9d.tar.gz moo-a1d4ecb3e4a8fbb233f3e5d1c036e6c19319af9d.tar.xz moo-a1d4ecb3e4a8fbb233f3e5d1c036e6c19319af9d.zip |
CFLAGS line for poor users without inline keyword.
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Makefile.in b/Makefile.in index 005be7c..5bed8ba 100644 --- a/Makefile.in +++ b/Makefile.in @@ -20,6 +20,11 @@ YACC = @YACC@ CFLAGS = -O # If you're using GCC, you may prefer: # CFLAGS = -O2 -finline-functions +# +# If you're not using GCC, and your compiler doesn't understand the +# inline keyword, use the following. (This will be fixed in autoconf2 +# upgrade). +# CFLAGS = -O2 -Dinline= YFLAGS = -d COMPILE.c = $(CC) $(CFLAGS) $(CPPFLAGS) -c @@ -149,6 +154,9 @@ depend: ${ALL_CSRCS} ############################################################################### # $Log$ +# Revision 1.7 2000/01/11 01:54:05 nop +# CFLAGS line for poor users without inline keyword. +# # Revision 1.6 2000/01/11 01:39:14 nop # Long overdue make depend # |