]> git.saurik.com Git - wxWidgets.git/blame - src/makeprog.env.in
Small doc changes and added missing files.lst to contrib.rsp
[wxWidgets.git] / src / makeprog.env.in
CommitLineData
8e877c19
RR
1# Make environment for making samples on Unix
2
3a922bb4 3# The binary program extension, if any, including dots (e.g. '.exe')
80d895cd 4PROGRAM_EXT = @PROGRAM_EXT@
3a922bb4
RL
5BIN_PROGRAM = $(PROGRAM)$(PROGRAM_EXT)
6RES_PROGRAM_OBJ = @RESPROGRAMOBJ@
7
8%.o : %.c
9 $(CC) -c $(CFLAGS) $(APPEXTRADEFS) -o $@ $<
80d895cd 10
3a922bb4
RL
11%.o : %.cpp
12 $(CXX) -c $(CXXFLAGS) $(APPEXTRADEFS) -o $@ $<
2f51a9ec 13
3a922bb4
RL
14%.o : %.cxx
15 $(CXX) -c $(CXXFLAGS) $(APPEXTRADEFS) -o $@ $<
48b1d0ff 16
3a922bb4
RL
17%_resources.o : %.rc
18 $(RESCOMP) -i $< -o $@ $(RESFLAGS)
48b1d0ff 19
48b1d0ff 20
4e9fd9e2
SN
21# the comment at the end of the next line is needed because otherwise autoconf
22# would remove this line completely - it contains a built-in hack to remove
23# any VPATH assignment not containing ':'
3a922bb4 24VPATH = @PATH_IFS@$(top_srcdir)/$(program_dir) # ':' for autoconf
b1683d38 25
549c6f67 26# Set defaults from configure
3a922bb4 27include $(top_builddir)/src/make.env
8e877c19 28
3a922bb4 29all: $(BIN_PROGRAM) install_dirs install_data
8e877c19 30
3a922bb4
RL
31$(BIN_PROGRAM): $(OBJECTS) $(top_builddir)/lib/@WX_TARGET_LIBRARY@ $(RES_PROGRAM_OBJ) @LIBWXMACRES@
32 $(CXX) $(LDFLAGS) -o $(BIN_PROGRAM) $(OBJECTS) $(LDLIBS) $(LIBRARIES) $(RES_PROGRAM_OBJ)
2f51a9ec 33 @LIBWXMACRESCOMP@
32832908 34
8e877c19 35
b1683d38 36install_dirs:
3a922bb4
RL
37 @list='$(DATADIRS)'; for p in $$list; do \
38 mkdir -p $(top_builddir)/$(program_dir)/$$p; \
b1683d38
RR
39 done
40
41install_data:
3a922bb4
RL
42 @list='$(DATAFILES)'; for p in $$list; do \
43 if test ! -s $(top_builddir)/$(program_dir)/$$p; then \
44 cp -pRf $(top_srcdir)/$(program_dir)/$$p $(top_builddir)/$(program_dir)/$$p; \
b1683d38
RR
45 fi; \
46 done
47
8e877c19 48clean:
afb74fdd 49 rm -f $(OBJECTS) $(DEPFILES) $(BIN_PROGRAM) $(RES_PROGRAM_OBJ) core
3a922bb4 50