home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 9 Archive / 09-Archive.zip / unar2412.zip / emxunarj.mak < prev    next >
Makefile  |  1995-01-06  |  378b  |  23 lines

  1. # Makefile for unarj.exe for emx+gcc 0.9a
  2.  
  3. CC=gcc -Zomf -O -D_OS2
  4. LD=gcc -Zomf -Zsys -Zstack 512 -s
  5. O=.obj
  6.  
  7. .SUFFIXES: .c $O
  8. .c$O:
  9.     $(CC) -c $<
  10.  
  11. all: unarj.exe
  12.  
  13. unarj$O: unarj.c unarj.h
  14.  
  15. decode$O: decode.c unarj.h
  16.  
  17. environ$O: environ.c unarj.h
  18.  
  19. unarj.exe: unarj$O decode$O environ$O unarj.def
  20.     $(LD) unarj$O decode$O environ$O unarj.def
  21.  
  22. # end of makefile
  23.