From 6882d6c15461712e95f3046c078e66737f23941c Mon Sep 17 00:00:00 2001 From: auroux Date: Wed, 14 Dec 2005 20:54:42 +0000 Subject: [PATCH] Initial revision --- src/Makefile.am | 21 +++++++++++++++++++++ src/xo-print.h | 1 + 2 files changed, 22 insertions(+) create mode 100644 src/Makefile.am create mode 100644 src/xo-print.h diff --git a/src/Makefile.am b/src/Makefile.am new file mode 100644 index 0000000..f61c052 --- /dev/null +++ b/src/Makefile.am @@ -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 index 0000000..96ab4be --- /dev/null +++ b/src/xo-print.h @@ -0,0 +1 @@ +void print_job_render(GnomePrintJob *gpj, int fromPage, int toPage); -- 2.39.2