]> git.saurik.com Git - wxWidgets.git/blame - samples/dialogs/makefile.g95
More Motif changes (colour/font stuff)
[wxWidgets.git] / samples / dialogs / makefile.g95
CommitLineData
457814b5
JS
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 dialogs 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
18OBJECTS = $(OBJDIR)/dialogs.$(OBJSUFF) $(OBJDIR)/dialogs_resources.$(OBJSUFF)
19
20all: $(OBJDIR) dialogs$(GUISUFFIX)
21
22$(OBJDIR):
23 mkdir $(OBJDIR)
24
25dialogs$(GUISUFFIX): $(OBJECTS) $(WXLIB)
26 $(CC) $(LDFLAGS) -o dialogs$(GUISUFFIX)$(EXESUFF) $(OBJECTS) $(LDLIBS)
27
28$(OBJDIR)/dialogs.$(OBJSUFF): dialogs.$(SRCSUFF)
29 $(CC) -c $(CPPFLAGS) -o $@ dialogs.$(SRCSUFF)
30
31$(OBJDIR)/dialogs_resources.o: dialogs.rc
32 $(RESCOMP) -i dialogs.rc -o $(OBJDIR)/dialogs_resources.o $(RESFLAGS)
33
34clean:
35 rm -f $(OBJECTS) dialogs$(GUISUFFIX).exe core *.rsc *.res