summaryrefslogtreecommitdiffstats
path: root/Makefile
blob: 648912bd613e5230862307ece54b50328486f1e6 (plain) (blame)
1
2
3
4
5
CC=gcc
CFLAGS=-Wall -Wno-pointer-sign -g

parse: parse.c dive.h
	$(CC) $(CFLAGS) -o parse `xml2-config --cflags` parse.c `xml2-config --libs`