]> git.saurik.com Git - wxWidgets.git/blame_incremental - src/makeprog.env.in
Avoided rounding errors in font point size calculations
[wxWidgets.git] / src / makeprog.env.in
... / ...
CommitLineData
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')
7PROGRAM_EXT = @PROGRAM_EXT@
8BIN_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# 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 ':'
22VPATH = @PATH_IFS@$(top_srcdir)/$(program_dir) # ':' for autoconf
23
24# Set defaults from configure
25include $(top_builddir)/src/make.env
26
27all: $(BIN_PROGRAM) install_dirs install_data
28
29$(BIN_PROGRAM): $(OBJECTS) $(top_builddir)/lib/@WX_TARGET_LIBRARY@
30 $(CC) $(LDFLAGS) -o $(BIN_PROGRAM) $(OBJECTS) $(LDLIBS)
31
32install_dirs:
33 @list='$(DATADIRS)'; for p in $$list; do \
34 mkdir -p $(top_builddir)/$(program_dir)/$$p; \
35 done
36
37install_data:
38 @list='$(DATAFILES)'; for p in $$list; do \
39 if test ! -s $(top_builddir)/$(program_dir)/$$p; then \
40 cp -pRf $(top_srcdir)/$(program_dir)/$$p $(top_builddir)/$(program_dir)/$$p; \
41 fi; \
42 done
43
44clean:
45 rm -f $(OBJECTS) $(BIN_PROGRAM) core