home *** CD-ROM | disk | FTP | other *** search
/ IRIS Development Option 6.2 / IRIS_Development_Option_6.2_814-0478-001.iso / dist / dev.idb / usr / include / make / po.mk.z / po.mk
Text File  |  1996-03-14  |  363b  |  23 lines

  1. #
  2. # Transformation rules for creating profiled object files with the .po suffix.
  3. #
  4. # $Revision: 1.1 $
  5. #
  6.  
  7. #ifndef _PO_MK
  8. _PO_MK        =
  9.  
  10. .SUFFIXES    : .po
  11.  
  12. ASFLAGS        ?=
  13. PCFLAGS        ?=
  14.  
  15. .c.po        :
  16.         $(CC) $(PCFLAGS) $(CFLAGS) -S -p $(.IMPSRC)
  17.         $(AS) $(ASFLAGS) -o $(.TARGET) $(.PREFIX).s
  18.         rm -f $(.PREFIX).s
  19. .s.po        :
  20.         $(AS) $(ASFLAGS) -o $(.TARGET) $(.IMPSRC)
  21.  
  22. #endif _PO_MK
  23.