From 56072f9e8557335612ccbcdb926992d751929c61 Mon Sep 17 00:00:00 2001 From: Julian Smart Date: Sun, 3 Apr 2005 17:05:05 +0000 Subject: [PATCH] Missing file added git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@33305 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- samples/popup/makefile.unx | 49 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 samples/popup/makefile.unx diff --git a/samples/popup/makefile.unx b/samples/popup/makefile.unx new file mode 100644 index 0000000000..ac0396ab68 --- /dev/null +++ b/samples/popup/makefile.unx @@ -0,0 +1,49 @@ +# +# 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. + +# this makefile may also be used as a template for simple makefiles for your +# own programs, the comments explain which parts of it you may have to modify +# to use it for your own programs + + +# you may change WX_CONFIG value to use a specific wx-config and to pass it +# some options, for example "--inplace" to use an uninstalled wxWindows +# version +# +# by default, wx-config from the PATH is used +WX_CONFIG := wx-config + +# set this to the name of the main executable file +PROGRAM = popup + +# if your program has more than one source file, add more .o files to the line +# below +OBJECTS = $(PROGRAM).o + + +# you shouldn't have to edit anything below this line +CXX = $(shell $(WX_CONFIG) --cxx) + +.SUFFIXES: .o .cpp + +.cpp.o : + $(CXX) -c `$(WX_CONFIG) --cxxflags` -o $@ $< + +all: $(PROGRAM) + +$(PROGRAM): $(OBJECTS) + $(CXX) -o $(PROGRAM) $(OBJECTS) `$(WX_CONFIG) --libs` + +clean: + rm -f *.o $(PROGRAM)