home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1 / Nebula One.iso / Internet / WWW / Perl_WWW_Utilities / weblog1.1 / uncgi / Makefile next >
Encoding:
Makefile  |  1995-06-25  |  521 b   |  28 lines

  1. #
  2. # @(#)Makefile    1.2 8/21/94
  3. #
  4. # Makefile for "uncgi"
  5. #
  6.  
  7. #
  8. # Set this to the directory where your CGI scripts live.  Uncgi will look
  9. # there for backend scripts.
  10. #
  11. CGI_BIN = /home/gerbilmeister/www/cgi-bin
  12.  
  13. #
  14. # Set this to the directory you'd like to install uncgi in, if different
  15. # from CGI_BIN.
  16. #
  17. DESTDIR = $(CGI_BIN)
  18.  
  19. uncgi: uncgi.c
  20.     $(CC) $(CFLAGS) -DCGI_BIN='"$(CGI_BIN)"' -o $@ uncgi.c
  21.  
  22. install: uncgi
  23.     cp uncgi $(DESTDIR)
  24.     chmod 755 $(DESTDIR)/uncgi
  25.  
  26. shar:
  27.     shar README patchlevel.h Makefile uncgi.c > uncgi.shar
  28.