home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / ool.zip / OOL / samples / sample6 / emx.mak < prev    next >
Makefile  |  1997-04-03  |  712b  |  37 lines

  1. #Makefile generated by Object WorkFrame - MakeMake
  2. #(c)opyright Stefan von Brauk, 1996
  3.  
  4. #target:   GNU Make
  5. #compiler: gcc/emx
  6. #date:     15.9.1996
  7. #actions:
  8. #   Compile C/C++
  9. #   Compile RC
  10. #   Link OBJ
  11. #   Link DEF
  12. #   Link RES
  13. #files: sample6.cpp sample6.rc sample6.obj sample6.RES sample6.DEF 
  14.  
  15. OBJS=sample6.obj
  16. LIBS=$(OOL)\lib\OOLW3E03.lib
  17.  
  18. COMPILE=gcc -Zmt -Zcrtdll -Zomf -fhandle-exceptions -c
  19. LINK=gcc -Zmt -Zcrtdll -Zomf -o
  20.  
  21. all: sample6.exe
  22.  
  23. %.obj: %.cpp
  24.     $(COMPILE) $<
  25.  
  26. sample6.exe: $(OBJS) sample6.res 
  27.     $(LINK) sample6.exe $(OBJS) $(LIBS) sample6.def
  28.     rc sample6.res sample6.exe
  29.  
  30.  
  31. sample6.res: sample6.rc
  32.     rc -r sample6.rc
  33.  
  34. sample6.obj: sample6.cpp\
  35.     sample6.h
  36.  
  37.