home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-387-Vol-3of3.iso / f / ftp-102.zip / ftape-1.02 / Makefile < prev    next >
Makefile  |  1992-10-12  |  1KB  |  42 lines

  1. # Makefile for floppytape driver.
  2. # Copyright (C) 1992 David L. Brown, Jr.
  3. #
  4. # This program is free software; you can redistribute it and/or modify
  5. # it under the terms of the GNU General Public License as published by
  6. # the Free Software Foundation; either version 2, or (at your option)
  7. # any later version.
  8. #
  9. # This program is distributed in the hope that it will be useful,
  10. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12. # GNU General Public License for more details.
  13. #
  14. # You should have received a copy of the GNU General Public License
  15. # along with this program; see the file COPYING.  If not, write to
  16. # the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
  17. #
  18. # Makefile,v 1.2 1992/10/13 02:31:17 dbrown Exp
  19. #
  20. # Makefile,v
  21. # Revision 1.2  1992/10/13  02:31:17  dbrown
  22. # Changed make to $(MAKE).
  23. #
  24. # Revision 1.1  1992/10/13  02:21:52  dbrown
  25. # Created
  26. #
  27.  
  28. include version.mk
  29.  
  30. CC=gcc
  31.  
  32. SUBDIRS=driver qic
  33.  
  34. all: .subdir version.o
  35.     for i in $(SUBDIRS); do (cd $$i; $(MAKE) $@); done
  36.  
  37. version.c: version.mk
  38.     echo "char version_string[] = \"GNU ftape version $(VERSION)\";" > $@
  39.  
  40. .subdir:
  41. .PHONY: .subdir
  42.