Working.
[idzebra-moved-to-github.git] / bfile / Makefile
index b4cee70..5c80307 100644 (file)
@@ -1,11 +1,10 @@
-
 SHELL=/bin/sh
 INCLUDE=-I../include
 TPROG=btest
-CFLAGS=-g -Wall
+CFLAGS=-g -Wall -pedantic
 DEFS=$(INCLUDE)
 LIB=../lib/bfile.a
-PO = open.o close.o rdwr.o
+PO = bfile.o mfile.o
 CPP=cc -E
 
 all: $(LIB)
@@ -22,11 +21,21 @@ $(LIB): $(PO)
        $(CC) -c $(DEFS) $(CFLAGS) $<
 
 clean:
-       rm -f *.[oa] $(TPROG) core mon.out gmon.out
+       rm -f *.[oa] $(TPROG) core mon.out gmon.out errlist
+
+depend: depend2
 
-dep depend:
-       $(CPP) $(INCLUDE) -M *.c >.depend
+depend1:
+       mv Makefile Makefile.tmp
+       sed '/^#Depend/q' <Makefile.tmp >Makefile
+       $(CPP) $(INCLUDE) -M *.c >>Makefile
+       -rm Makefile.tmp
 
-#ifeq (.depend,$(wildcard .depend))
+depend2:
+       $(CPP) $(INCLUDE) -M *.c >.depend       
+
+ifeq (.depend,$(wildcard .depend))
 include .depend
-#endif
+endif
+
+#Depend --- DOT NOT DELETE THIS LINE