From 76edc528c4245391b53a08a8fb56cfdba926e57d Mon Sep 17 00:00:00 2001 From: Peter Hofmann Date: Sat, 14 Jun 2014 10:40:03 +0200 Subject: Initial draft --- Makefile | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..48cec60 --- /dev/null +++ b/Makefile @@ -0,0 +1,9 @@ +CFLAGS += -Wall -Wextra -O3 + +sn: sn.c + $(CC) $(CFLAGS) $(LDFLAGS) \ + -o $@ $< \ + `pkg-config --cflags --libs gtk+-3.0 webkitgtk-3.0` + +clean: + rm -f sn -- cgit v1.2.3