home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / misc / volume1 / 8712 / mkmf / 2 / src / target.h < prev    next >
Encoding:
C/C++ Source or Header  |  1990-07-13  |  279 b   |  17 lines

  1. /* $Header: target.h,v 1.1 85/03/14 15:38:49 nicklin Exp $ */
  2.  
  3. /*
  4.  * Target definitions
  5.  *
  6.  * Author: Peter J. Nicklin
  7.  */
  8.  
  9. /*
  10.  * Target struct
  11.  */
  12. typedef struct _target
  13.     {
  14.     int type;            /* prog, lib, or other target type */
  15.     int dest;            /* target destination flag */
  16.     } TARGET;
  17.