Fixed bug in zass_open - variable initialized after use
[egate.git] / zlayer / Makefile
index 44566aa..a2f13dc 100644 (file)
@@ -2,7 +2,13 @@
 # Europagate, 1995
 #
 # $Log: Makefile,v $
-# Revision 1.9  1995/04/17 11:26:52  quinn
+# Revision 1.11  1995/04/19 09:24:01  quinn
+# Fixed bug in zass_open - variable initialized after use
+#
+# Revision 1.10  1995/04/19  07:31:28  adam
+# Minor changes.
+#
+# Revision 1.9  1995/04/17  11:26:52  quinn
 # Added YAZ version of zaccess
 #
 # Revision 1.8  1995/04/17  09:36:44  adam
@@ -44,6 +50,7 @@ LIB=../lib/libzass.a
 PO=zaccess-yaz.o
 CPP=$(CC) -E
 DEFS=$(INCLUDE)
+CFILES=zaccess.c
 
 all: $(LIB)
 
@@ -65,11 +72,11 @@ depend: depend2
 
 depend1:
        sed '/^#Depend/q' <Makefile >Makefile.tmp
-       $(CPP) $(DEFS) -M *.c >>Makefile.tmp
+       $(CPP) $(DEFS) -M $(CFILES) >>Makefile.tmp
        mv -f Makefile.tmp Makefile
 
 depend2:
-       $(CPP) $(DEFS) -M *.c >.depend  
+       $(CPP) $(DEFS) -M $(CFILES) >.depend    
 
 #GNU make style depend
 ifeq (.depend,$(wildcard .depend))