IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 3184


Ignore:
Timestamp:
Feb 9, 2005, 4:51:35 PM (21 years ago)
Author:
jhoblitt
Message:

tidying

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/archive/psdb/makefile

    r3183 r3184  
    11SHELL=/bin/sh
    2 CFG=/usr/bin/mysql_config
    3 CFLAGS=-g -O0 -pipe -fpic -Wall -pedantic -std=c99 -L/usr/local/lib -I/usr/local/include
    4 MYLIBS:=$(shell $(CFG) --libs)
    5 MYFLAGS:=$(shell $(CFG) --cflags)
     2CFG=`which mysql_config`
     3CFLAGS=-g -O0 -pipe -fpic -Wall -pedantic -std=c99
     4MYSQL_LIBS:=$(shell $(CFG) --libs)
     5MYSQL_FLAGS:=$(shell $(CFG) --cflags)
    66LIBS=-lpslib
    77
     
    1717
    1818psdb: $(objects)
    19         $(CC) $(CFLAGS) -shared -o libpsdb.so $(objects) $(LIBS) $(MYFLAGS) $(MYLIBS)
     19        $(CC) $(CFLAGS) -shared -o libpsdb.so $(objects) $(LIBS) $(MYSQL_FLAGS) $(MYSQL_LIBS)
    2020
    2121$(objects): %.o : %.c
Note: See TracChangeset for help on using the changeset viewer.