# wulfd Makefile
#

CFLAGS=-Wall -Wstrict-prototypes -g -fno-common -fomit-frame-pointer -DDEBUG
CC=gcc
MODULE=wulfd
STRIP=/usr/bin/strip
OBJS=getstats.o send.o

all: $(MODULE)
	$(STRIP) $(MODULE)

$(MODULE): $(OBJS)

install:
	mkdir -p $(PREFIX)/usr/sbin/
	install -m 755 wulfd $(PREFIX)/usr/sbin/wulfd

clean:
	rm -f $(OBJS) $(MODULE) core
