| OLD | NEW | 
|    1 #!/usr/make |    1 #!/usr/make | 
|    2 # |    2 # | 
|    3 # Makefile for SQLITE |    3 # Makefile for SQLITE | 
|    4 # |    4 # | 
|    5 # This makefile is suppose to be configured automatically using the |    5 # This makefile is suppose to be configured automatically using the | 
|    6 # autoconf.  But if that does not work for you, you can configure |    6 # autoconf.  But if that does not work for you, you can configure | 
|    7 # the makefile manually.  Just set the parameters below to values that |    7 # the makefile manually.  Just set the parameters below to values that | 
|    8 # work well for your system. |    8 # work well for your system. | 
|    9 # |    9 # | 
|   10 # If the configure script does not work out-of-the-box, you might |   10 # If the configure script does not work out-of-the-box, you might | 
| (...skipping 811 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  822 $(REAL_LIBOBJ): $(LIBOBJ) |  822 $(REAL_LIBOBJ): $(LIBOBJ) | 
|  823  |  823  | 
|  824 sqlite3.def: $(REAL_LIBOBJ) |  824 sqlite3.def: $(REAL_LIBOBJ) | 
|  825         echo 'EXPORTS' >sqlite3.def |  825         echo 'EXPORTS' >sqlite3.def | 
|  826         nm $(REAL_LIBOBJ) | grep ' T ' | grep ' _sqlite3_' \ |  826         nm $(REAL_LIBOBJ) | grep ' T ' | grep ' _sqlite3_' \ | 
|  827                 | sed 's/^.* _//' >>sqlite3.def |  827                 | sed 's/^.* _//' >>sqlite3.def | 
|  828  |  828  | 
|  829 sqlite3.dll: $(REAL_LIBOBJ) sqlite3.def |  829 sqlite3.dll: $(REAL_LIBOBJ) sqlite3.def | 
|  830         $(TCC) -shared -o $@ sqlite3.def \ |  830         $(TCC) -shared -o $@ sqlite3.def \ | 
|  831                 -Wl,"--strip-all" $(REAL_LIBOBJ) |  831                 -Wl,"--strip-all" $(REAL_LIBOBJ) | 
| OLD | NEW |