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