]> git.evergreen-ils.org Git - OpenSRF.git/blob - src/extras/marcdumper/Makefile
the marcdumper! takes command line params
[OpenSRF.git] / src / extras / marcdumper / Makefile
1 #
2 # This utility code requires libxml2 and yaz version 2.0.34 or greater.
3 #
4
5 CC = gcc
6 LD = -lxml2 -lyaz 
7 COMP = -O2 -I /usr/include/libxml2/ 
8
9 all: marcdumper
10
11 marcdumper:  marcdumper.c
12         $(CC) marcdumper.c $(COMP) $(LD) -o $@
13
14 clean:
15         /bin/rm -f *.o marcdumper
16
17