rules.shl
上传用户:xiejiait
上传日期:2007-01-06
资源大小:881k
文件大小:2k
源码类别:

SCSI/ASPI

开发平台:

MultiPlatform

  1. #ident "@(#)rules.shl 1.4 98/09/21 "
  2. ###########################################################################
  3. # Written 1996 by J. Schilling
  4. ###########################################################################
  5. #
  6. # Rules for shared (dynamic) libraries
  7. #
  8. # SUBARCHDIR must be before any other definitions
  9. #
  10. ###########################################################################
  11. # This program is free software; you can redistribute it and/or modify
  12. # it under the terms of the GNU General Public License as published by
  13. # the Free Software Foundation; either version 2, or (at your option)
  14. # any later version.
  15. #
  16. # This program is distributed in the hope that it will be useful,
  17. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  18. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  19. # GNU General Public License for more details.
  20. #
  21. # You should have received a copy of the GNU General Public License
  22. # along with this program; see the file COPYING.  If not, write to
  23. # the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
  24. ###########################################################################
  25. SUBARCHDIR= /pic
  26. COPTS += $(COPTDYN)
  27. LDOPTS += $(LDOPTDYN)
  28. ###########################################################################
  29. include $(SRCROOT)/$(RULESDIR)/rules.obj
  30. ###########################################################################
  31. TARGET= $(LIB_PREFIX)$(TARGETLIB)$(SHL_SUFFIX)
  32. TARGET_BASE= $(LIB_PREFIX)$(TARGETLIB)
  33. TARGET_PATH= $(OLIBSDIR)
  34. PTARGET= $(OLIBSDIR)/$(TARGET)
  35. PTARGET_BASE= $(OLIBSDIR)/$(TARGET_BASE)
  36. all: $(TARGET_PATH) $(PTARGET)
  37. $(TARGET_PATH):
  38. $(MKDIR) -p $@
  39. $(PTARGET): $(OFILES)
  40. $(DYNLD) -o $@ $(LDFLAGS) $(LDLIBS) `$(LORDER) $(POFILES) | $(TSORT)`
  41. -$(LNDYNLIB)
  42. # @$(SYMLINK) $(TARGET) $(PTARGET_BASE).so
  43. ###########################################################################
  44. include $(SRCROOT)/$(RULESDIR)/rules.clr
  45. include $(SRCROOT)/$(RULESDIR)/rules.ins
  46. include $(SRCROOT)/$(RULESDIR)/rules.tag
  47. include $(SRCROOT)/$(RULESDIR)/rules.hlp
  48. include $(SRCROOT)/$(RULESDIR)/rules.cnf
  49. include $(SRCROOT)/$(RULESDIR)/rules.dep
  50. ###########################################################################