home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / wxos2240.zip / wxWindows-2.4.0 / samples / typetest / makefile.twn < prev    next >
Makefile  |  2000-03-14  |  1KB  |  36 lines

  1. # Purpose: makefile for typetest example (TWIN)
  2. # Created: 2000-03-14
  3.  
  4. WXDIR = ../..
  5.  
  6. # All common UNIX compiler flags and options are now in
  7. # this central makefile.
  8. include $(WXDIR)/src/maketwin.env
  9.  
  10. OBJECTS = $(OBJDIR)/typetest.$(OBJSUFF) $(OBJDIR)/typetest.$(OBJSUFF)
  11.  
  12. all:    $(OBJDIR) typetest$(GUISUFFIX)$(EXESUFF)
  13.  
  14. wx:
  15.  
  16. $(OBJDIR):
  17.     mkdir $(OBJDIR)
  18.  
  19. typetest$(GUISUFFIX)$(EXESUFF):    $(OBJECTS) $(WXLIB)
  20.     $(CC) $(LDFLAGS) -o typetest$(GUISUFFIX)$(EXESUFF) $(OBJECTS) $(LDLIBS)
  21.  
  22. $(OBJDIR)/typetest.$(OBJSUFF):    typetest.$(SRCSUFF)
  23.     $(CC) -c $(CPPFLAGS) -o $@ typetest.$(SRCSUFF)
  24.  
  25. typetest.c:  typetest.rc
  26.     $(RESCOMP) $(RCINPUTSWITCH) typetest.rc $(RCOUTPUTSWITCH) typetest.c $(RESFLAGS)
  27.  
  28. $(OBJDIR)/typetest.$(OBJSUFF):    typetest.c
  29.     $(CC) -c $(CPPFLAGS) -o $@ typetest.c
  30.  
  31. #$(OBJDIR)/typetest.o:  typetest.rc
  32. #    $(RESCOMP) $(RCINPUTSWITCH) typetest.rc $(RCOUTPUTSWITCH) $(OBJDIR)/typetest.o $(RESFLAGS)
  33.  
  34. clean:
  35.     rm -f $(OBJECTS) typetest$(GUISUFFIX).exe core *.rsc *.res
  36.