home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Spezial / SPEZIAL2_97.zip / SPEZIAL2_97.iso / ANWEND / ONLINE / HYPERMAI / HYPERMAI.ZIP / libcgi / Makefile < prev    next >
Makefile  |  1997-03-16  |  442b  |  27 lines

  1. # CGI virdoc library makefile
  2.  
  3. # You shouldn't have to edit anything else.
  4.  
  5. INSTALL=install
  6. AUX_LIBS=
  7. AR=ar
  8. RANLIB=ar s
  9. RM= /bin/rm -f
  10.  
  11. ALL = libcgi.a
  12.  
  13. .c.o:    cgi.h $<
  14.     $(CC) -c $(CFLAGS) $(AUX_CFLAGS) $(INF_INCS) $< -o $@
  15.  
  16. all: $(ALL)
  17.  
  18. libcgi.a: form_ent.o get_cgi_info.o main.o syn_mime.o syn_url.o mcode.o\
  19.     form_tags.o strops.o html.o
  20.     $(AR) r $@ $?
  21.     ${RANLIB} $@
  22.  
  23. install: $(ALL)
  24.  
  25. clean:
  26.     -/bin/rm -f *.o *~ *.a
  27.