]> git.sur5r.net Git - bacula/bacula/commitdiff
Lets generate ingres code by calling esqlcc and not esqlc as we want c++ code. Replac...
authorMarco van Wieringen <mvw@planets.elm.net>
Wed, 3 Mar 2010 17:37:37 +0000 (18:37 +0100)
committerEric Bollengier <eric@eb.homelinux.org>
Mon, 2 Aug 2010 14:49:36 +0000 (16:49 +0200)
bacula/src/cats/Makefile.in

index 3840f20ef97947d3a289074e06a36845a1f1f45b..f12ea35950f33fcbcb2a3ecae7ab2595b174b536 100644 (file)
@@ -56,10 +56,15 @@ all: Makefile libbacsql$(DEFAULT_ARCHIVE_TYPE)
        @echo "==== Make of sqllib is good ===="
        @echo " "
 
-# SRE: embeddedSQL precompiler run
-esql:
-       $(II_SYSTEM)/ingres/bin/esqlc -omyingres.c myingres.sc
-       $(II_SYSTEM)/ingres/bin/esqlc -omyingres.h myingres.sh
+myingres.c: myingres.sc
+       @echo "Generating $@ from $<"
+       $(NO_ECHO)$(II_SYSTEM)/ingres/bin/esqlcc -extension=c $<
+
+myingres.h: myingres.sh
+       @echo "Generating $@ from $<"
+       $(NO_ECHO)$(II_SYSTEM)/ingres/bin/esqlcc -extension=h $<
+
+esql: myingres.c myingres.h
 
 libbacsql.a: $(LIBBACSQL_OBJS)
        @echo "Making $@ ..."