
# uncomment this if you dont want to show info for hidden dirs at all.
DEFS = -DNOSHOWHIDDEN=1

all: muggi-who

muggi-who: muggi-who.c
	gcc -o $@ $< $(DEFS)

install: muggi-who
	cp muggi-who /glftpd/bin

clean:
	rm muggi-who

