]> git.saurik.com Git - wxWidgets.git/blob - samples/resource/makefile.g95
*** empty log message ***
[wxWidgets.git] / samples / resource / makefile.g95
1 #
2 # File: makefile.g95
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 resource example (UNIX).
11
12 WXDIR = ../..
13
14 # All common UNIX compiler flags and options are now in
15 # this central makefile.
16 include $(WXDIR)/src/makeg95.env
17
18 OBJECTS=$(OBJDIR)/resource.$(OBJSUFF) $(OBJDIR)/resource_resources.$(OBJSUFF)
19
20 all: $(OBJDIR) resource.exe
21
22 $(OBJDIR):
23 mkdir $(OBJDIR)
24
25 $(OBJDIR)/resource.$(OBJSUFF): resource.$(SRCSUFF) resource.h
26 $(CC) -c $(CPPFLAGS) -o $@ resource.$(SRCSUFF)
27
28 resource.exe: $(OBJECTS) $(WXLIB)
29 $(CC) $(LDFLAGS) -o resource$(GUISUFFIX)$(EXESUFF) $(OBJECTS) $(LDLIBS)
30
31 $(OBJDIR)/resource_resources.o: resource.rc
32 $(RESCOMP) -i resource.rc -o $(OBJDIR)/resource_resources.o $(RESFLAGS)
33
34 clean:
35 rm -f $(OBJECTS) resource$(GUISUFFIX).exe core *.rsc *.res
36