]>
Commit | Line | Data |
---|---|---|
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 | ||
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)/dialogs.$(OBJSUFF) $(OBJDIR)/dialogs_resources.$(OBJSUFF) | |
19 | ||
20 | all: $(OBJDIR) dialogs$(GUISUFFIX) | |
21 | ||
22 | $(OBJDIR): | |
23 | mkdir $(OBJDIR) | |
24 | ||
25 | dialogs$(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 | ||
34 | clean: | |
35 | rm -f $(OBJECTS) dialogs$(GUISUFFIX).exe core *.rsc *.res |