X-Git-Url: http://git.meshlink.io/?a=blobdiff_plain;f=Makefile;fp=Makefile;h=f5af6241cda64dc89e0b3a441db9a58a012c100a;hb=33ccd714ea9469b5b7d3b36bbe468ba1b0f31dfc;hp=0000000000000000000000000000000000000000;hpb=2095aa52444f9ab598475ddcf8ca1773a02f8e13;p=catta diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..f5af624 --- /dev/null +++ b/Makefile @@ -0,0 +1,10 @@ +CFLAGS=-g -O0 -Wall -W -pipe $(shell pkg-config --cflags glib-2.0) +LIBS=$(shell pkg-config --libs glib-2.0) + +flexmdns: main.o iface.o netlink.o server.o address.o util.o local.o + $(CC) -o $@ $^ $(LIBS) + +*.o: *.h + +clean: + rm -f *.o flexmdns