home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / drdc011.zip / source / makefile < prev   
Makefile  |  2002-03-21  |  667b  |  30 lines

  1. # Makefile for DRUSRCTL.DLL a DLL with a percent bar control
  2. # and flyover help for DrDialog
  3. #
  4. # Compiled with VAC++ 3.08
  5. # (other compilers should do the job after minor tweaking)
  6.  
  7. VERSION         =    0_1_1
  8. CC           = icc
  9. CPPFLAGS     = /Ge- /Gm+ /G4 /Gl  /O+ /Oc+ /Ol- /Q+ $(VACDEBUG)
  10.  
  11. all:    drusrctl.dll
  12.  
  13. drusrctl.dll:    drusrctl.obj  drusrctl.def
  14.     ILINK /NOFREE drusrctl.obj,drusrctl.dll,,REXX,drusrctl.def;
  15.  
  16. drusrctl.obj:    drusrctl.c
  17.     icc -c -Ge- drusrctl.c
  18.     
  19. clean:
  20.     -rm *.o
  21.     -rm *.obj
  22.  
  23. cleaner:
  24.     -rm *.*~
  25.     -rm *.flc
  26.  
  27. distribution:
  28.     -cd ..\. && rm drdialog-controls-$(VERSION).zip
  29.     -cd ..\. && zip -r drdialog-controls-$(VERSION).zip *
  30.