]> git.saurik.com Git - wxWidgets.git/blobdiff - samples/toolbar/makefile.unx
implemented wxPopupWindow for wxDFB; added wxNonOwnedWindow as base class for wxTopLe...
[wxWidgets.git] / samples / toolbar / makefile.unx
index 91d51a0bd1502a2eef796219ec3fd2d80963b868..19849b28782a65c3fb609b8168752a222081a398 100644 (file)
@@ -1,23 +1,71 @@
-# Purpose: makefile for toolbar example (Unix)
-# Created: 2000-03-14
+# =========================================================================
+#     This makefile was generated by
+#     Bakefile 0.2.1 (http://bakefile.sourceforge.net)
+#     Do not modify, all changes will be overwritten!
+# =========================================================================
 
-CC = gcc
 
-PROGRAM = toolbar
 
-OBJECTS = $(PROGRAM).o
+# -------------------------------------------------------------------------
+# These are configurable options:
+# -------------------------------------------------------------------------
 
-# implementation
+# C++ compiler 
+CXX = g++
 
-.SUFFIXES:     .o .cpp
+# Standard flags for C++ 
+CXXFLAGS = 
 
-.cpp.o :
-       $(CC) -c `wx-config --cflags` -o $@ $<
+# Standard preprocessor flags (common for CC and CXX) 
+CPPFLAGS = 
 
-all:    $(PROGRAM)
+# Standard linker flags 
+LDFLAGS = 
 
-$(PROGRAM):    $(OBJECTS)
-       $(CC) -o $(PROGRAM) $(OBJECTS) `wx-config --libs`
+# Location and arguments of wx-config script 
+WX_CONFIG = wx-config
 
-clean:
-       rm -f *.o $(PROGRAM)
+# C++ flags to use with wxWidgets code 
+WX_CXXFLAGS = `$(WX_CONFIG) --cxxflags`
+
+
+
+# -------------------------------------------------------------------------
+# Do not modify the rest of this file!
+# -------------------------------------------------------------------------
+
+### Variables: ###
+
+CPPDEPS = -MT$@ -MF`echo $@ | sed -e 's,\.o$$,.d,'` -MD
+TOOLBAR_CXXFLAGS =  -I.  $(WX_CXXFLAGS) $(CPPFLAGS) $(CXXFLAGS)
+TOOLBAR_OBJECTS =  \
+       toolbar_toolbar.o
+
+### Conditionally set variables: ###
+
+
+
+### Targets: ###
+
+all: toolbar
+
+install: all
+
+uninstall: 
+
+clean: 
+       rm -f ./*.o
+       rm -f ./*.d
+       rm -f toolbar
+
+toolbar: $(TOOLBAR_OBJECTS)
+       $(CXX) -o $@ $(TOOLBAR_OBJECTS) $(LDFLAGS)   `$(WX_CONFIG) --libs core,base`
+
+toolbar_toolbar.o: ./toolbar.cpp
+       $(CXX) -c -o $@ $(TOOLBAR_CXXFLAGS) $(CPPDEPS) $<
+
+.PHONY: all install uninstall clean
+
+
+# Dependencies tracking:
+-include ./*.d