home *** CD-ROM | disk | FTP | other *** search
/ PC Online 1998 December / PCO_1298.ISO / filesbbs / os2 / bubpd102.arj / BUBPD102.ZIP / Source / makefile < prev   
Encoding:
Makefile  |  1998-09-19  |  906 b   |  41 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
  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. clean:
  32.     -del *.obj
  33.     -del *.dll
  34.     -del inst.exe
  35.     -del *.res
  36.     -del *.hlp
  37.  
  38. install:
  39.     cd ..
  40.     install.exe
  41.