aboutsummaryrefslogtreecommitdiffstats
path: root/src/Makefile
diff options
context:
space:
mode:
authorGravatar Tom Willemsen2010-10-19 01:28:46 +0200
committerGravatar Tom Willemsen2010-10-19 01:28:46 +0200
commitc34819ee2c5d8d4fb536ea469588d8f0ccbf08e0 (patch)
treeca72a46cbe21d308d89b84077a43f036f58aed03 /src/Makefile
parent767ca99d338cddf3dff25d31e54739dbff400ad8 (diff)
downloadeye-on-manga-c34819ee2c5d8d4fb536ea469588d8f0ccbf08e0.tar.gz
eye-on-manga-c34819ee2c5d8d4fb536ea469588d8f0ccbf08e0.zip
Data
Data is gotten from an sqlite3 database New series can be added to the database
Diffstat (limited to 'src/Makefile')
-rw-r--r--src/Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/Makefile b/src/Makefile
index 24b89b6..895314b 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -1,4 +1,4 @@
-CFLAGS=`pkg-config hildon-1 --cflags --libs`
+CFLAGS=`pkg-config hildon-1 sqlite3 --cflags --libs`
all:
$(CC) -Wall -Wextra -pedantic \
@@ -6,6 +6,7 @@ all:
interface.c \
c-main-window.c \
c-new-item-dialog.c \
+ data.c \
$(CFLAGS) \
-o collections
@@ -13,4 +14,4 @@ all:
check-syntax:
/scratchbox/login $(CC) -pedantic -Wall -Wextra -fsyntax-only \
`readlink -f $(CHK_SOURCES)` \
- `/scratchbox/login pkg-config hildon-1 --cflags --libs`
+ `/scratchbox/login pkg-config hildon-1 sqlite3 --cflags --libs`