home *** CD-ROM | disk | FTP | other *** search
/ PC Pro 1999 January / dppcpro0199a.iso / January / Fp98 / SDK / WebBot / wbtest2 / Makefile next >
Encoding:
Makefile  |  1997-09-18  |  667 b   |  34 lines

  1. #
  2. # Copyright (c) 1996 Vermeer Technologies, Inc., a wholly owned
  3. #               subsidiary of Microsoft Corp.  All Rights Reserved
  4. #
  5. # File: wbtest2/Makefile
  6. # DLL Custom WebBot Component: Solaris Makefile
  7. #
  8. # Note:  In order for these files to work on UNIX, you may have to convert
  9. # to UNIX format by removing the CR (^M) characters at the end of each line.
  10. #
  11.  
  12. CPLUSPLUS=g++
  13. CFLAGS=-fPIC
  14. LDFLAGS=-nostdlib -shared
  15.  
  16. SRCS=wbtest2.cpp
  17. OBJS=wbtest2.o
  18. LIB=wbtest2.so
  19.  
  20. .SUFFIXES: .so .o .cpp
  21.  
  22. .cpp.o:
  23.     $(CPLUSPLUS) -c $(CFLAGS) $<
  24.  
  25. all: $(LIB)
  26.  
  27. $(LIB):    $(OBJS)
  28.     $(CPLUSPLUS) $(LDFLAGS) $(OBJS) -o $(LIB)
  29.  
  30. clean:
  31.     rm -f $(OBJS) $(LIB)
  32.  
  33.  
  34.