| OLD | NEW | 
|    1 #!/usr/make |    1 #!/usr/make | 
|    2 # |    2 # | 
|    3 # Makefile for SQLITE |    3 # Makefile for SQLITE | 
|    4 # |    4 # | 
|    5 # This is a template makefile for SQLite.  Most people prefer to |    5 # This is a template makefile for SQLite.  Most people prefer to | 
|    6 # use the autoconf generated "configure" script to generate the |    6 # use the autoconf generated "configure" script to generate the | 
|    7 # makefile automatically.  But that does not work for everybody |    7 # makefile automatically.  But that does not work for everybody | 
|    8 # and in every situation.  If you are having problems with the |    8 # and in every situation.  If you are having problems with the | 
|    9 # "configure" script, you might want to try this makefile as an |    9 # "configure" script, you might want to try this makefile as an | 
|   10 # alternative.  Create a copy of this file, edit the parameters |   10 # alternative.  Create a copy of this file, edit the parameters | 
| (...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  140 #LIBREADLINE = -static -lreadline -ltermcap |  140 #LIBREADLINE = -static -lreadline -ltermcap | 
|  141  |  141  | 
|  142 #### Which "awk" program provides nawk compatibilty |  142 #### Which "awk" program provides nawk compatibilty | 
|  143 # |  143 # | 
|  144 # NAWK = nawk |  144 # NAWK = nawk | 
|  145 NAWK = awk |  145 NAWK = awk | 
|  146  |  146  | 
|  147 # You should not have to change anything below this line |  147 # You should not have to change anything below this line | 
|  148 ############################################################################### |  148 ############################################################################### | 
|  149 include $(TOP)/main.mk |  149 include $(TOP)/main.mk | 
| OLD | NEW |