diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 10 |
1 files changed, 10 insertions, 0 deletions
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 |