blob: c8d2518cd4934562b54a8537225cb57800caf982 [file] [log] [blame]
PROG=qevt_client
all: $(PROG)
$(PROG): $(PROG).c
gcc $(PROG).c -Wall -Werror -o $(PROG)
clean:
rm -f *.o $(PROG)
distclean: clean