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

  1. # Purpose: makefile for treelay example (TWIN)
  2. # Created: 2000-03-15
  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)/treelay.$(OBJSUFF) $(OBJDIR)/treelay.$(OBJSUFF)
  11.  
  12. all:    $(OBJDIR) treelay$(GUISUFFIX)$(EXESUFF)
  13.  
  14. wx:
  15.  
  16. $(OBJDIR):
  17.     mkdir $(OBJDIR)
  18.  
  19. treelay$(GUISUFFIX)$(EXESUFF):    $(OBJECTS) $(WXLIB)
  20.     $(CC) $(LDFLAGS) -o treelay$(GUISUFFIX)$(EXESUFF) $(OBJECTS) $(LDLIBS)
  21.  
  22. $(OBJDIR)/treelay.$(OBJSUFF):    treelay.$(SRCSUFF)
  23.     $(CC) -c $(CPPFLAGS) -o $@ treelay.$(SRCSUFF)
  24.  
  25. treelay.c:  treelay.rc
  26.     $(RESCOMP) $(RCINPUTSWITCH) treelay.rc $(RCOUTPUTSWITCH) treelay.c $(RESFLAGS)
  27.  
  28. $(OBJDIR)/treelay.$(OBJSUFF):    treelay.c
  29.     $(CC) -c $(CPPFLAGS) -o $@ treelay.c
  30.  
  31. #$(OBJDIR)/treelay.o:  treelay.rc
  32. #    $(RESCOMP) $(RCINPUTSWITCH) treelay.rc $(RCOUTPUTSWITCH) $(OBJDIR)/treelay.o $(RESFLAGS)
  33.  
  34. clean:
  35.     rm -f $(OBJECTS) treelay$(GUISUFFIX).exe core *.rsc *.res
  36.