home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / owf.zip / template / stdc / stdc.mak < prev    next >
Makefile  |  1997-04-09  |  475b  |  31 lines

  1.  
  2. #actions:
  3. #   Compile C/C++
  4. #   Compile RC
  5. #   Link OBJ
  6. #   Link DEF
  7. #   Link RES
  8. #files: stdc.c stdc.rc stdc.obj stdc.res stdc.def 
  9.  
  10.  
  11. OBJS=stdc.obj
  12.  
  13. all: stdc.exe stdc.dll
  14.  
  15. %.obj: %.c
  16.     gcc -Zmtd -Zcrtdll -Zomf -c $<
  17.  
  18. stdc.exe: $(OBJS)
  19.     gcc -Zmtd -Zcrtdll -Zomf -o stdc.exe $(OBJS) $(LIBS) stdc.def
  20.  
  21.  
  22. stdc.dll: stdc.rc stdc.dlg
  23.     rc -r stdc.rc stdc.res
  24.     link386 res0, stdc.dll, nul, ,dll.def
  25.     rc stdc.res stdc.dll
  26.  
  27. stdc.obj: stdc.cpp\
  28.     stdc.h
  29.  
  30.  
  31.