home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / wxos2240.zip / wxWindows-2.4.0 / samples / internat / makefile.sc < prev    next >
Makefile  |  1998-05-20  |  695b  |  36 lines

  1. # Symantec C++ makefile for minimal example
  2. # NOTE that peripheral libraries are now dealt in main wxWindows makefile.
  3.  
  4. WXDIR = $(WXWIN)
  5. !include $(WXDIR)\src\makesc.env
  6.  
  7. WXLIB = $(WXDIR)\lib\wx.lib
  8. INCDIR = $(WXDIR)\include
  9. MSWINC = $(INCDIR)\msw
  10. BASEINC = $(INCDIR)\base
  11.  
  12. CC=sc
  13. RC=rc
  14. CFLAGS = -o -ml -W -Dwx_msw
  15. LDFLAGS = -ml -W
  16.  
  17. INCLUDE=$(BASEINC);$(MSWINC)
  18.  
  19. LIBS=$(WXLIB) libw.lib commdlg.lib shell.lib
  20.  
  21. .$(SRCSUFF).obj:
  22.     *$(CC) -c $(CFLAGS) -I$(INCLUDE) $<
  23.  
  24. .rc.res:
  25.     *$(RC) -r -I$(INCLUDE) $<
  26.  
  27. minimal.exe: minimal.obj minimal.def minimal.res
  28.     *$(CC) $(LDFLAGS) -o$@ $** $(LIBS)
  29.  
  30. clean:
  31.         -del *.obj
  32.     -del *.exe
  33.     -del *.res
  34.     -del *.map
  35.     -del *.rws
  36.