Changeset 3184
- Timestamp:
- Feb 9, 2005, 4:51:35 PM (21 years ago)
- File:
-
- 1 edited
-
trunk/archive/psdb/makefile (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/archive/psdb/makefile
r3183 r3184 1 1 SHELL=/bin/sh 2 CFG= /usr/bin/mysql_config3 CFLAGS=-g -O0 -pipe -fpic -Wall -pedantic -std=c99 -L/usr/local/lib -I/usr/local/include4 MY LIBS:=$(shell $(CFG) --libs)5 MY FLAGS:=$(shell $(CFG) --cflags)2 CFG=`which mysql_config` 3 CFLAGS=-g -O0 -pipe -fpic -Wall -pedantic -std=c99 4 MYSQL_LIBS:=$(shell $(CFG) --libs) 5 MYSQL_FLAGS:=$(shell $(CFG) --cflags) 6 6 LIBS=-lpslib 7 7 … … 17 17 18 18 psdb: $(objects) 19 $(CC) $(CFLAGS) -shared -o libpsdb.so $(objects) $(LIBS) $(MY FLAGS) $(MYLIBS)19 $(CC) $(CFLAGS) -shared -o libpsdb.so $(objects) $(LIBS) $(MYSQL_FLAGS) $(MYSQL_LIBS) 20 20 21 21 $(objects): %.o : %.c
Note:
See TracChangeset
for help on using the changeset viewer.
