Makefile.aix
上传用户:blenddy
上传日期:2007-01-07
资源大小:6495k
文件大小:1k
源码类别:

数据库系统

开发平台:

Unix_Linux

  1. # MAKE_EXPORTS is required for svr4 loaders that want a file of
  2. # symbol names to tell them what to export/import.
  3. MAKE_EXPORTS= true
  4. RANLIB= touch
  5. MK_NO_LORDER= true
  6. EXPSUFF= .exp
  7. IMPSUFF= .imp
  8. POSTGRES_IMP= postgres$(IMPSUFF)
  9. MKLDEXPORT=$(SRCDIR)/backend/port/aix/mkldexport.sh
  10. $(POSTGRES_IMP):
  11. @echo Making $@
  12. $(MKLDEXPORT) postgres $(BINDIR) > $@
  13. $(CC) -bE:$(SRCDIR)/backend/$@ -o postgres $(OBJS) ../utils/version.o $(LDFLAGS)
  14. %$(EXPSUFF):
  15. $(MKLDEXPORT) $*.o `pwd` > $*$(EXPSUFF)
  16. %$(DLSUFFIX): %.o %$(EXPSUFF)
  17. @echo Making share library $@ from $*.o, $*$(EXPSUFF), and installed postgres.imp
  18. $(LD) -H512 -bM:SRE -bI:$(LIBDIR)/$(POSTGRES_IMP) -bE:$*$(EXPSUFF) -o $@ $*.o $(LDFLAGS) $(CFLAGS_SL)