]> git.saurik.com Git - wxWidgets.git/blobdiff - samples/dialogs/makefile.unx
don't show line numbers as 0 when they're not available, show empty string instead
[wxWidgets.git] / samples / dialogs / makefile.unx
index 9307e84c82e22d6a85f644d53f6235614d2eda01..d469d2c4f3294651bbb8e2985c9c88bd35761d03 100644 (file)
@@ -1,28 +1,71 @@
-#
-# File:                Makefile for samples
-# Author:      Robert Roebling
-# Created:     1999
-# Updated:     
-# Copyright:   (c) 1998 Robert Roebling
-#
-# This makefile requires a Unix version of wxWindows
-# to be installed on your system. This is most often
-# done typing "make install" when using the complete
-# sources of wxWindows or by installing the two
-# RPM packages wxGTK.XXX.rpm and wxGTK-devel.XXX.rpm
-# under Linux.
-#
-
-CC = gcc
-
-PROGRAM = dialogs
-
-$(PROGRAM): $(PROGRAM).o
-       $(CC) -o $(PROGRAM) \
-       $(PROGRAM).o `wx-config --libs`
-
-$(PROGRAM).o: $(PROGRAM).cpp
-       $(CC) `wx-config --cflags` -c $(PROGRAM).cpp
+# =========================================================================
+#     This makefile was generated by
+#     Bakefile 0.2.1 (http://bakefile.sourceforge.net)
+#     Do not modify, all changes will be overwritten!
+# =========================================================================
+
+
+
+# -------------------------------------------------------------------------
+# These are configurable options:
+# -------------------------------------------------------------------------
+
+# C++ compiler 
+CXX = g++
+
+# Standard flags for C++ 
+CXXFLAGS = 
+
+# Standard preprocessor flags (common for CC and CXX) 
+CPPFLAGS = 
+
+# Standard linker flags 
+LDFLAGS = 
+
+# Location and arguments of wx-config script 
+WX_CONFIG = wx-config
+
+# 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
+DIALOGS_CXXFLAGS =  -I.  $(WX_CXXFLAGS) $(CPPFLAGS) $(CXXFLAGS)
+DIALOGS_OBJECTS =  \
+       dialogs_dialogs.o
+
+### Conditionally set variables: ###
+
+
+
+### Targets: ###
+
+all: dialogs
+
+install: all
+
+uninstall: 
 
 clean: 
-       rm -f *.o $(PROGRAM)
+       rm -f ./*.o
+       rm -f ./*.d
+       rm -f dialogs
+
+dialogs: $(DIALOGS_OBJECTS)
+       $(CXX) -o $@ $(DIALOGS_OBJECTS) $(LDFLAGS)   `$(WX_CONFIG) --libs adv,html,xml,core,base`
+
+dialogs_dialogs.o: ./dialogs.cpp
+       $(CXX) -c -o $@ $(DIALOGS_CXXFLAGS) $(CPPDEPS) $<
+
+.PHONY: all install uninstall clean
+
+
+# Dependencies tracking:
+-include ./*.d