]> git.saurik.com Git - wxWidgets.git/blame - samples/taskbar/makefile.g95
wxTreeCtrl::Sort() changed, adapted the sample to show it.
[wxWidgets.git] / samples / taskbar / makefile.g95
CommitLineData
bbf1f0e5
KB
1#
2# File: makefile.unx
3# Author: Julian Smart
4# Created: 1993
5# Updated:
6# Copyright: (c) 1993, AIAI, University of Edinburgh
7#
8# "%W% %G%"
9#
10# Makefile for taskbar example
11
12WXDIR = ../..
13
14# All common UNIX compiler flags and options are now in
15# this central makefile.
16include $(WXDIR)/src/makeg95.env
17
18OBJECTS = $(OBJDIR)/tbtest.$(OBJSUFF) $(OBJDIR)/tbtest_resources.$(OBJSUFF)
19
20all: $(OBJDIR) tbtest$(GUISUFFIX)$(EXESUFF)
21
22wx:
23
24$(OBJDIR):
25 mkdir $(OBJDIR)
26
27tbtest$(GUISUFFIX)$(EXESUFF): $(OBJECTS) $(WXLIB)
28 $(CC) $(LDFLAGS) -o tbtest$(GUISUFFIX)$(EXESUFF) $(OBJECTS) $(LDLIBS)
29
30$(OBJDIR)/tbtest.$(OBJSUFF): tbtest.$(SRCSUFF)
31 $(CC) -c $(CPPFLAGS) -o $@ tbtest.$(SRCSUFF)
32
33$(OBJDIR)/tbtest_resources.o: tbtest.rc
34 $(RESCOMP) -i tbtest.rc -o $(OBJDIR)/tbtest_resources.o $(RESFLAGS)
35
36clean:
37 rm -f $(OBJECTS) tbtest$(GUISUFFIX).exe core *.rsc *.res