home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 11 Util / 11-Util.zip / APPTYPE.ZIP / EMX / makefile.emx < prev   
Makefile  |  1993-03-24  |  387b  |  21 lines

  1. # makefile for apptype, a program to determine the type of executable.
  2. # Environment: OS/2 and EMX/gcc 0.8f using dmake 3.8.
  3. #
  4. # Darrel Hankerson hankedr@mail.auburn.edu or hank@ducvax.auburn.edu
  5. # 24 March 1993
  6.  
  7. DEFS = -DEMX
  8.  
  9. CC = gcc -Zomf -Zmt
  10. CFLAGS = $(DEFS)
  11. LFLAGS = 
  12.  
  13. O = .obj
  14.  
  15. .c$O :
  16.     $(CC) -c $(CFLAGS) $<
  17.  
  18. apptype.exe : apptype$O
  19.     $(CC) -o $@ $(LFLAGS) $<
  20.  
  21.