summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorAdel Gadllah <adel.gadllah@gmail.com>2009-02-20 22:57:15 +0100
committerAdel Gadllah <adel.gadllah@gmail.com>2009-02-20 22:57:15 +0100
commit9ed8ad91b66c12f538eff1c1e7a9e4b5eb5e45aa (patch)
tree7a692f9d6a0017408d4f3de5cf0cbd38f4c8ecae /Makefile
Initial commit
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile12
1 files changed, 12 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..dccb048
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,12 @@
+CC=gcc
+CFLAGS=
+
+all:
+ python get_layouts.py > keyboards.h
+ $(CC) fedora-setup-keyboard.c `pkg-config --cflags --libs hal glib-2.0` $(CFLAGS) -o fedora-setup-keyboard
+
+install:
+ install -m 755 fedora-setup-keyboard $(DESTDIR)/fedora-setup-keyboard
+
+clean:
+ rm -f fedora-setup-keyboard keyboards.h