CC=gcc
CFLAGS=-O
iptcutil: iptcutil.c
	$(CC) $(CFLAGS) -o iptcutil iptcutil.c

clean: 
	rm iptcutil *~

all: iptcutil



