summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorpixel <pixel>2003-01-24 08:17:00 +0000
committerpixel <pixel>2003-01-24 08:17:00 +0000
commita1176b45029cf5c7645627d38dfc96f66ea213f5 (patch)
tree57f497f9862147f93eb9e80bc7e4116c65dbb494 /src
parentdebc9f5e2933494e946c86f8575cb130472dbc04 (diff)
All for NPAQ files...
Diffstat (limited to 'src')
-rw-r--r--src/Makefile.am7
-rw-r--r--src/paq.cc9
2 files changed, 14 insertions, 2 deletions
diff --git a/src/Makefile.am b/src/Makefile.am
index dc5372e..a6c1b01 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -6,7 +6,7 @@ AM_CFLAGS = -O3 -Wall -Wstrict-prototypes -g
AM_CXXFLAGS = -O3 -Wall -Wstrict-prototypes -g
INCLUDES = -I.. -I../include -I$(includedir)
-noinst_PROGRAMS = Baltisot
+noinst_PROGRAMS = Baltisot paq
noinst_JAVA = TestApplet.java
@@ -14,8 +14,11 @@ JAVAROOT = datas
Baltisot_SOURCES = Main.cc
-LDADD = ../lib/libBaltisot.la -lefence
+paq_SOURCES = paq.cc
+
+LDADD = ../lib/libBaltisot.la
Baltisot_LDADD = $(LDADD)
+paq_LDADD = $(LDADD)
EXTRA_DIST = misc.cc TestApplet.java
diff --git a/src/paq.cc b/src/paq.cc
new file mode 100644
index 0000000..fff6569
--- /dev/null
+++ b/src/paq.cc
@@ -0,0 +1,9 @@
+#include <dirent.h>
+#include <Main.h>
+#include <Input.h>
+#include <Output.h>
+
+CODE_BEGINS
+virtual int startup(void) throw (GeneralException) {
+}
+CODE_ENDS