]> git.sur5r.net Git - bacula/bacula/commitdiff
Lets not generate the ingres code automatically when the .sc or .sh files changes...
authorMarco van Wieringen <mvw@planets.elm.net>
Sat, 6 Mar 2010 09:37:11 +0000 (10:37 +0100)
committerMarco van Wieringen <mvw@planets.elm.net>
Sat, 6 Mar 2010 09:39:01 +0000 (10:39 +0100)
these files get outdated on some systems and then this rule kicks in on systems that don't have
the esqlcc ingres compiler installed.

bacula/src/cats/Makefile.in

index 76f8a619780833a418c557964a093583aa89bdd8..2ad0078d72ad76a9b2ecc916dc0f890e6d6ea11e 100644 (file)
@@ -56,15 +56,11 @@ all: Makefile libbacsql$(DEFAULT_ARCHIVE_TYPE)
        @echo "==== Make of sqllib is good ===="
        @echo " "
 
-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
+esql:
+       @echo "Generating myingres.c from myingres.sc"
+       $(NO_ECHO)$(II_SYSTEM)/ingres/bin/esqlcc -extension=c myingres.sc
+       @echo "Generating myingres.h from myingres.sh"
+       $(NO_ECHO)$(II_SYSTEM)/ingres/bin/esqlcc -extension=h myingres.sh
 
 libbacsql.a: $(LIBBACSQL_OBJS)
        @echo "Making $@ ..."