]>
Commit | Line | Data |
---|---|---|
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 | # | |
cfb88c55 | 10 | # Makefile for minimal example (UNIX). |
c801d85f KB |
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 | ||
cfb88c55 | 18 | OBJECTS = $(OBJDIR)/minimal.$(OBJSUFF) $(OBJDIR)/minimal_resources.$(OBJSUFF) |
c801d85f | 19 | |
cfb88c55 | 20 | all: $(OBJDIR) minimal$(GUISUFFIX)$(EXESUFF) |
c801d85f KB |
21 | |
22 | wx: | |
23 | ||
24 | $(OBJDIR): | |
25 | mkdir $(OBJDIR) | |
26 | ||
cfb88c55 JS |
27 | minimal$(GUISUFFIX)$(EXESUFF): $(OBJECTS) $(WXLIB) |
28 | $(CC) $(LDFLAGS) -o minimal$(GUISUFFIX)$(EXESUFF) $(OBJECTS) $(LDLIBS) | |
c801d85f | 29 | |
cfb88c55 JS |
30 | $(OBJDIR)/minimal.$(OBJSUFF): minimal.$(SRCSUFF) |
31 | $(CC) -c $(CPPFLAGS) -o $@ minimal.$(SRCSUFF) | |
c801d85f | 32 | |
cfb88c55 JS |
33 | $(OBJDIR)/minimal_resources.o: minimal.rc |
34 | $(RESCOMP) -i minimal.rc -o $(OBJDIR)/minimal_resources.o $(RESFLAGS) | |
c801d85f KB |
35 | |
36 | clean: | |
cfb88c55 | 37 | rm -f $(OBJECTS) minimal$(GUISUFFIX).exe core *.rsc *.res |