]>
Commit | Line | Data |
---|---|---|
8e877c19 RR |
1 | # Make environment for making samples on Unix |
2 | ||
48b1d0ff RR |
3 | # Clears all default suffixes |
4 | .SUFFIXES: .o .cpp .c .cxx | |
5 | ||
80d895cd HH |
6 | # The binary program extension, if any, including dots (e.g. '.exe') |
7 | PROGRAM_EXT = @PROGRAM_EXT@ | |
8 | BIN_PROGRAM = $(PROGRAM)$(PROGRAM_EXT) | |
9 | ||
48b1d0ff RR |
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 | ||
4e9fd9e2 SN |
19 | # the comment at the end of the next line is needed because otherwise autoconf |
20 | # would remove this line completely - it contains a built-in hack to remove | |
21 | # any VPATH assignment not containing ':' | |
22 | VPATH = @PATH_IFS@$(top_srcdir)/$(program_dir) # ':' for autoconf | |
b1683d38 | 23 | |
549c6f67 RR |
24 | # Set defaults from configure |
25 | include $(top_builddir)/src/make.env | |
8e877c19 | 26 | |
80d895cd | 27 | all: $(BIN_PROGRAM) install_dirs install_data |
8e877c19 | 28 | |
80d895cd | 29 | $(BIN_PROGRAM): $(OBJECTS) $(top_builddir)/lib/@WX_TARGET_LIBRARY@ |
64d78265 | 30 | $(CC) $(LDFLAGS) -o $(BIN_PROGRAM) $(OBJECTS) $(LDLIBS) |
8e877c19 | 31 | |
b1683d38 RR |
32 | install_dirs: |
33 | @list='$(DATADIRS)'; for p in $$list; do \ | |
34 | mkdir -p $(top_builddir)/$(program_dir)/$$p; \ | |
35 | done | |
36 | ||
37 | install_data: | |
38 | @list='$(DATAFILES)'; for p in $$list; do \ | |
ac2def68 | 39 | if test ! -s $(top_builddir)/$(program_dir)/$$p; then \ |
3e58661e | 40 | cp -pRf $(top_srcdir)/$(program_dir)/$$p $(top_builddir)/$(program_dir)/$$p; \ |
b1683d38 RR |
41 | fi; \ |
42 | done | |
43 | ||
8e877c19 | 44 | clean: |
80d895cd | 45 | rm -f $(OBJECTS) $(BIN_PROGRAM) core |