home *** CD-ROM | disk | FTP | other *** search
/ Programming Win32 Under the API / ProgrammingWin32UnderTheApiPatVillani.iso / Chapter7 / 7-1 / Makefile next >
Encoding:
Makefile  |  2000-10-07  |  244 b   |  22 lines

  1.  
  2. #
  3. # Makefile for examples in Chapter 7
  4. #
  5.  
  6.  
  7. PRODUCTS    = SimplePipe.exe
  8.  
  9. CC        = gcc
  10. CFLAGS        = -g
  11.  
  12. all:        $(PRODUCTS)
  13.  
  14. SimplePipe.exe:    SimplePipe.c
  15.         $(CC) $(CFLAGS) -o SimplePipe SimplePipe.c
  16.  
  17. #
  18. # Maintenance targets
  19. #
  20. clean:
  21.  
  22.