default: fireproxy

.PHONY: test
test: fireproxy
	# shell func..ulimit -c unlimited
	modprobe raw1394
	sh buildloop

fireproxy: Makefile fireproxy.c fireproxy.h stub.c remote-utils.c
	gcc -o fireproxy fireproxy.c stub.c remote-utils.c $(CFLAGS) $(LDFLAGS)

LDFLAGS=-lraw1394
CFLAGS=-Wall -g3 -O3
