utf8proc
diff Makefile @ 9:951e73a98021
Version 1.1.3
- Added a function utf8proc_version returning a string containing the version number of the library.
- Included a target libutf8proc.dylib for MacOSX.
- PostgreSQL 8.3 compatibility (use of SET_VARSIZE macro)
- Added a function utf8proc_version returning a string containing the version number of the library.
- Included a target libutf8proc.dylib for MacOSX.
- PostgreSQL 8.3 compatibility (use of SET_VARSIZE macro)
| author | jbe | 
|---|---|
| date | Fri May 01 12:00:00 2009 +0200 (2009-05-01) | 
| parents | fcfd8c836c64 | 
| children | 00d2bcbdc945 | 
   line diff
1.1 --- a/Makefile Wed Jul 25 12:00:00 2007 +0200 1.2 +++ b/Makefile Fri May 01 12:00:00 2009 +0200 1.3 @@ -4,7 +4,7 @@ 1.4 # settings 1.5 1.6 cflags = -O2 -std=c99 -pedantic -Wall -fpic $(CFLAGS) 1.7 -cc = gcc $(cflags) 1.8 +cc = $(CC) $(cflags) 1.9 1.10 1.11 # meta targets 1.12 @@ -35,6 +35,9 @@ 1.13 $(cc) -shared -o libutf8proc.so utf8proc.o 1.14 chmod a-x libutf8proc.so 1.15 1.16 +libutf8proc.dylib: utf8proc.o 1.17 + $(cc) -dynamiclib -o $@ $^ -install_name $(libdir)/$@ 1.18 + 1.19 ruby/Makefile: ruby/extconf.rb 1.20 cd ruby && ruby extconf.rb 1.21