home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / misc / volume25 / sybperl / part01 / Makefile < prev    next >
Makefile  |  1991-11-11  |  2KB  |  73 lines

  1. #    @(#)Makefile    1.4    9/9/91
  2. #
  3.     
  4. CC = cc
  5. PERLSRC = ..                # where to find uperl.o
  6. SYBINCS = /usr/local/sybase/include    # where to find the sybase .h files
  7. LOCINCS =                # other includes ?
  8. SYBLIBDIR = /usr/local/lib        # Sybase libraries
  9. SYBLIBS = -lsybdb            # db-library
  10.  
  11. # Uncomment this if you are compiling sybperl for Perl version 3.xx
  12.  
  13. # PERL_VERSION = -DVERSION3
  14.  
  15. # The Perl/Sybase savestr() conflict.
  16. # Both Perl and Sybase DB-Library have a function called savestr(),
  17. # and this creates a problem when using functions such as dbcmd().
  18. # There are several ways around this.
  19. # You can:
  20. #
  21. #    - define BROKEN_DBCMD: this enables some code emulating
  22. #      dbcmd() that I've written.
  23. #    - Recompile uperl.o with a -Dsavestr=psvestr (or something similar).
  24. #    - Edit an existing uperl.o and change _savestr to _psvestr.
  25. #
  26. # To use the first option, uncomment the following definitions for
  27. # SAVESTR and UPERL
  28. # SAVESTR = -DBROKEN_DBCMD
  29. # UPERL = $(PERLSRC)/uperl.o
  30. #
  31. # To use the second option, you have to reconfigure & recompile Perl
  32. # manually, and then set compile sybperl with the following line
  33. # uncommented:
  34. # UPERL = $(PERLSRC)/uperl.o
  35. #
  36. # The default is to use the third solution:
  37. UPERL = uperl2.o
  38.  
  39.  
  40. CFLAGS = -O                 # 
  41. CPPFLAGS = -I$(PERLSRC) -I$(LOCINCS) -I$(SYBINCS) $(PERL_VERSION) $(SAVESTR)
  42. BINDIR = /usr/local/bin            # where does the executable go
  43. PERLLIB = /usr/local/lib/perl        # where does lib/sybperl.pl go
  44. MANDIR = /usr/local/man            # where do we put the manual page
  45. MANEXT = l
  46.  
  47.  
  48. sybperl: $(UPERL) sybperl.o
  49.     $(CC) $(CFLAGS) -L$(SYBLIBDIR) $(UPERL) sybperl.o $(SYBLIBS) -lm -o sybperl
  50.  
  51. sybperl.o: sybperl.c
  52.     $(CC) -c $(CFLAGS) $(CPPFLAGS) sybperl.c
  53.  
  54. # Create uperl.o IF you wish to use the 3rd way of resolving the
  55. # Perl/Sybase savestr conflict.
  56. $(UPERL): $(PERLSRC)/uperl.o
  57.     cp $(PERLSRC)/uperl.o $(UPERL)
  58.     perl -p -i.bak -e 's/savestr/psvestr/g;' $(UPERL)
  59.  
  60. clean:
  61.     rm -f sybperl *.o *~
  62.  
  63. install: sybperl
  64.     install -s -m 775 sybperl $(BINDIR)
  65.     cp lib/sybperl.pl $(PERLLIB)/perllib.pl
  66.     pc sybperl.1 $(MANDIR)/man$(MANEXT)/sybperl.$(MANEXT)
  67.  
  68. shar:
  69.     rm -f sybperl.shar
  70.     shar.pl README PACKING.LST BUGS Makefile sybperl.c sybperl.1 patchlevel.h lib/sybperl.pl t/sbex.pl >sybperl.shar
  71.  
  72.  
  73.