home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 11 Util / 11-Util.zip / bubpd103.zip / Source / makefile < prev   
Makefile  |  1998-11-15  |  1KB  |  45 lines

  1. # Makefile for BubblePd.dll
  2.  
  3. CC           = icc
  4. LIB_DIR      = $d:/emx/lib 
  5. CPPFLAGS     = -Ge- /Gm+ -G4 -Gl  /O+ -Oc+ -Ol
  6. DEFS         = 
  7. PROGS        = bubblepd.dll 
  8. OBJECTS    = bubblepd.obj
  9.  
  10. all: bubblepd.dll inst.exe bubblepd.hlp LPReplace.exe
  11.  
  12. bubblepd.hlp:
  13.     ipfc bubblepddeutsch.ipf
  14.     -copy bubblepddeutsch.HLP ..\Deutsch\BUBBLEPD.HLP
  15.     ipfc bubblepdenglish.ipf
  16.     -copy bubblepdenglish.HLP ..\English\BUBBLEPD.HLP
  17.  
  18. inst.exe: inst.cpp
  19.     gcc inst.cpp -los2 inst.def -lvideo
  20.     -copy inst.exe ..\install.exe
  21.  
  22. bubblepd.dll: bubblepd.cpp bubblepd.hh deutsch.rc english.rc
  23.     -mkdir ..\Deutsch
  24.     -mkdir ..\English
  25.      icc -Ge- -G4 -Gl -Rn /O+ -Oc+ -Ol bubblepd.cpp bubblepd.def
  26.      rc deutsch.rc bubblepd.dll
  27.     -copy bubblepd.dll ..\Deutsch
  28.      rc english.rc bubblepd.dll
  29.     -copy bubblepd.dll ..\English
  30.  
  31. LPReplace.exe: LPReplace.cpp
  32.     icc LPReplace.cpp
  33.     -copy LPReplace.exe ..\
  34.  
  35. clean:
  36.     -del *.obj
  37.     -del *.dll
  38.     -del *.exe
  39.     -del *.res
  40.     -del *.hlp
  41.  
  42. install:
  43.     cd ..
  44.     install.exe
  45.