aboutsummaryrefslogtreecommitdiffstats
path: root/src/Makefile.orig
diff options
context:
space:
mode:
Diffstat (limited to 'src/Makefile.orig')
-rw-r--r--src/Makefile.orig18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/Makefile.orig b/src/Makefile.orig
new file mode 100644
index 0000000..8b0c154
--- /dev/null
+++ b/src/Makefile.orig
@@ -0,0 +1,18 @@
+CFLAGS=`pkg-config hildon-1 sqlite3 --cflags --libs`
+
+all:
+ $(CC) -Wall -pedantic \
+ eom.c \
+ interface.c \
+ eom-main-window.c \
+ eom-edit-window.c \
+ eom-new-item-dialog.c \
+ data.c \
+ $(CFLAGS) \
+ -o eye-on-manga
+
+.PHONY: check-syntax
+check-syntax:
+ /scratchbox/login $(CC) -pedantic -Wall -Wextra -fsyntax-only \
+ `readlink -f $(CHK_SOURCES)` \
+ `/scratchbox/login pkg-config hildon-1 sqlite3 --cflags --libs`