]>
Commit | Line | Data |
---|---|---|
1 | # Make environment for making samples on Unix | |
2 | ||
3 | # Clears all default suffixes | |
4 | .SUFFIXES: .o .cpp .c .cxx | |
5 | ||
6 | # The binary program extension, if any, including dots (e.g. '.exe') | |
7 | PROGRAM_EXT = @PROGRAM_EXT@ | |
8 | BIN_PROGRAM = $(PROGRAM)$(PROGRAM_EXT) | |
9 | ||
10 | .c.o : | |
11 | $(CCC) -c $(CFLAGS) -o $@ $< | |
12 | ||
13 | .cpp.o : | |
14 | $(CC) -c $(CPPFLAGS) -o $@ $< | |
15 | ||
16 | .cxx.o : | |
17 | $(CC) -c $(CPPFLAGS) -o $@ $< | |
18 | ||
19 | VPATH = :$(top_srcdir)/$(program_dir) | |
20 | ||
21 | # Set defaults from configure | |
22 | include $(top_builddir)/src/make.env | |
23 | ||
24 | all: $(BIN_PROGRAM) install_dirs install_data | |
25 | ||
26 | $(BIN_PROGRAM): $(OBJECTS) $(top_builddir)/lib/@WX_TARGET_LIBRARY@ | |
27 | $(CC) $(LDFLAGS) -o $(BIN_PROGRAM) $(OBJECTS) $(EXTRALIBS) $(LDLIBS) | |
28 | ||
29 | install_dirs: | |
30 | @list='$(DATADIRS)'; for p in $$list; do \ | |
31 | mkdir -p $(top_builddir)/$(program_dir)/$$p; \ | |
32 | done | |
33 | ||
34 | install_data: | |
35 | @list='$(DATAFILES)'; for p in $$list; do \ | |
36 | if test ! -s $(top_builddir)/$(program_dir)/$$p; then \ | |
37 | cp -f $(top_srcdir)/$(program_dir)/$$p $(top_builddir)/$(program_dir)/$$p; \ | |
38 | fi; \ | |
39 | done | |
40 | ||
41 | clean: | |
42 | rm -f $(OBJECTS) $(BIN_PROGRAM) core |