CC = gcc
CFLAGS = -Wall

ifeq ($(test),1)
CFLAGS	+= -DHOST_TEST
endif

sysrepd : sysrepd.c
	$(CC) $(CFLAGS) $< -o $@

clean:
	rm -f sysrepd
