]> git.saurik.com Git - wxWidgets.git/blame - samples/splitter/makefile.g95
cw pro adaption (illegal default argument error was given)
[wxWidgets.git] / samples / splitter / makefile.g95
CommitLineData
c801d85f
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 splitter example (UNIX).
11
12WXDIR = ../..
13
14# All common UNIX compiler flags and options are now in
15# this central makefile.
16include $(WXDIR)/src/makeg95.env
17
a724d789 18OBJECTS = $(OBJDIR)/test.$(OBJSUFF) $(OBJDIR)/test_resources.$(OBJSUFF)
c801d85f
KB
19
20all: $(OBJDIR) test$(GUISUFFIX)$(EXESUFF)
21
22wx:
23
24$(OBJDIR):
25 mkdir $(OBJDIR)
26
a724d789
JS
27test$(GUISUFFIX)$(EXESUFF): $(OBJECTS) $(WXLIB)
28 $(CC) $(LDFLAGS) -o test$(GUISUFFIX)$(EXESUFF) $(OBJECTS) $(LDLIBS)
c801d85f
KB
29
30$(OBJDIR)/test.$(OBJSUFF): test.$(SRCSUFF)
31 $(CC) -c $(CPPFLAGS) -o $@ test.$(SRCSUFF)
32
a724d789
JS
33$(OBJDIR)/test_resources.o: test.rc
34 $(RESCOMP) -i test.rc -o $(OBJDIR)/test_resources.o $(RESFLAGS)
c801d85f
KB
35
36clean:
37 rm -f $(OBJECTS) test$(GUISUFFIX).exe core *.rsc *.res
a724d789
JS
38
39