]> git.donarmstrong.com Git - xournal.git/commitdiff
Initial revision
authorauroux <auroux>
Wed, 14 Dec 2005 20:54:42 +0000 (20:54 +0000)
committerauroux <auroux>
Wed, 14 Dec 2005 20:54:42 +0000 (20:54 +0000)
src/Makefile.am [new file with mode: 0644]
src/xo-print.h [new file with mode: 0644]

diff --git a/src/Makefile.am b/src/Makefile.am
new file mode 100644 (file)
index 0000000..f61c052
--- /dev/null
@@ -0,0 +1,21 @@
+## Process this file with automake to produce Makefile.in
+
+INCLUDES = \
+       -DPACKAGE_DATA_DIR=\""$(datadir)"\" \
+       -DPACKAGE_LOCALE_DIR=\""$(prefix)/$(DATADIRNAME)/locale"\" \
+       @PACKAGE_CFLAGS@
+
+bin_PROGRAMS = xournal
+
+xournal_SOURCES = \
+       main.c xournal.h \
+       xo-misc.c xo-misc.h \
+       xo-file.c xo-file.h \
+       xo-paint.c xo-paint.h \
+       xo-print.c xo-print.h \
+       xo-support.c xo-support.h \
+       xo-interface.c xo-interface.h \
+       xo-callbacks.c xo-callbacks.h 
+
+xournal_LDADD = @PACKAGE_LIBS@
+
diff --git a/src/xo-print.h b/src/xo-print.h
new file mode 100644 (file)
index 0000000..96ab4be
--- /dev/null
@@ -0,0 +1 @@
+void print_job_render(GnomePrintJob *gpj, int fromPage, int toPage);