summaryrefslogtreecommitdiff
path: root/saedit/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'saedit/Makefile')
-rw-r--r--saedit/Makefile8
1 files changed, 8 insertions, 0 deletions
diff --git a/saedit/Makefile b/saedit/Makefile
new file mode 100644
index 0000000..772012e
--- /dev/null
+++ b/saedit/Makefile
@@ -0,0 +1,8 @@
+GTK_FLAGS = $(shell pkg-config gtk+-2.0 --cflags --libs) $(shell pkg-config gtksourceview-2.0 --cflags --libs)
+IBUS_FLAGS = $(shell pkg-config ibus-1.0 --cflags --libs)
+OUTPUT = saedit
+all:compile clean
+compile:
+ gcc ${CFLAGS} ${GTK_FLAGS} ${IBUS_FLAGS} ${LDFLAGS} main.c -o '${OUTPUT}'
+clean:
+ rm -rfv *.o~ *.c~ *.h~