Organization of resource files for targets and conversion
[egate.git] / Makefile
index e5bee67..3fe5cb1 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -2,12 +2,24 @@
 # Europagate, 1994-1995.
 #
 # $Log: Makefile,v $
-# Revision 1.1  1995/02/09 17:27:10  adam
-# Initial revision
+# Revision 1.5  1995/02/15 17:40:47  adam
+# New module kernel.
+#
+# Revision 1.4  1995/02/13  12:34:56  adam
+# New module ccl.
+#
+# Revision 1.3  1995/02/10  17:21:17  adam
+# FML is add as sub Makefile.
+#
+# Revision 1.2  1995/02/10  16:48:52  adam
+# Minor changes.
+#
+# Revision 1.1.1.1  1995/02/09  17:27:11  adam
+# Initial version of email gateway under CVS control.
 #
 SHELL=/bin/sh
 MAKE=make
-SUBDIR=res+log util
+SUBDIR=res+log util fml ccl kernel
 CFLAGS=-Wall -g -pedantic -ansi 
 CC=gcc
 
@@ -18,7 +30,7 @@ dep depend:
        for i in $(SUBDIR); do cd $$i; if $(MAKE) depend; then cd ..; else exit 1; fi; done
 
 clean:
-       rm -f lib/*
+       rm -f lib/*.a
        for i in $(SUBDIR); do (cd $$i; $(MAKE) clean); done
 
 cleanup: