diff options
author | Michael Zucci <zucchi@src.gnome.org> | 2000-02-14 10:00:22 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2000-02-14 10:00:22 +0800 |
commit | add8821e99b4ea1b574ed469018ae224a542e6ae (patch) | |
tree | 3e9e02c153fb7300707a26a132ee66c9177d2369 /libibex/Makefile | |
parent | e4bbdf696cc2f23e9b1fc288d37a44eb27d9426d (diff) | |
download | gsoc2013-evolution-add8821e99b4ea1b574ed469018ae224a542e6ae.tar gsoc2013-evolution-add8821e99b4ea1b574ed469018ae224a542e6ae.tar.gz gsoc2013-evolution-add8821e99b4ea1b574ed469018ae224a542e6ae.tar.bz2 gsoc2013-evolution-add8821e99b4ea1b574ed469018ae224a542e6ae.tar.lz gsoc2013-evolution-add8821e99b4ea1b574ed469018ae224a542e6ae.tar.xz gsoc2013-evolution-add8821e99b4ea1b574ed469018ae224a542e6ae.tar.zst gsoc2013-evolution-add8821e99b4ea1b574ed469018ae224a542e6ae.zip |
Initial revision
svn path=/trunk/; revision=1768
Diffstat (limited to 'libibex/Makefile')
-rw-r--r-- | libibex/Makefile | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/libibex/Makefile b/libibex/Makefile new file mode 100644 index 0000000000..eec7e1b302 --- /dev/null +++ b/libibex/Makefile @@ -0,0 +1,26 @@ +OBJS=file.o index.o find.o words.o +MKINDEXOBJS=mkindex.o +LOOKUPOBJS=lookup.o + +CFLAGS=${PROF} -g -Wall -Wstrict-prototypes -Wmissing-prototypes `glib-config --cflags` `unicode-config --cflags` +LDFLAGS=${PROF} + +all: libibex.a mkindex lookup + +libibex.a: ${OBJS} + ar cru $@ ${OBJS} + @test -x /usr/bin/ranlib && ranlib $@ + +mkindex: ${MKINDEXOBJS} libibex.a + ${CC} ${LDFLAGS} -o mkindex ${MKINDEXOBJS} libibex.a \ + `glib-config --libs` `unicode-config --libs` + +lookup: ${LOOKUPOBJS} libibex.a + ${CC} ${LDFLAGS} -o lookup ${LOOKUPOBJS} libibex.a \ + `glib-config --libs` `unicode-config --libs` + +clean: + rm -f ${OBJS} libibex.a + rm -f ${MKINDEXOBJS} mkindex + rm -f ${LOOKUPOBJS} lookup + rm -f *.core *~ INDEX
\ No newline at end of file |