]> git.saurik.com Git - wxWidgets.git/blobdiff - samples/controls/makefile.unx
Change wxSound ctor wrappings so sound can be loaded from data
[wxWidgets.git] / samples / controls / makefile.unx
index 9685d067899c1abfc33c01e51e6be9ea7b65ae9b..6519d521e39013b7980899af0b25407eda7e5292 100644 (file)
@@ -1,58 +1,35 @@
 #
-# File:                makefile.unx
-# Author:      Julian Smart
-# Created:     1993
+# File:                Makefile for samples
+# Author:      Robert Roebling
+# Created:     1999
 # Updated:     
-# Copyright:   (c) 1993, AIAI, University of Edinburgh
+# Copyright:   (c) 1998 Robert Roebling
 #
-# "%W% %G%"
+# 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.
 #
-# Makefile for minimal example (UNIX).
 
-WXDIR = ../..
+PROGRAM = controls
 
-# All common UNIX compiler flags and options are now in
-# this central makefile.
-include $(WXDIR)/src/make.env
+CXX = $(shell wx-config --cxx)
 
-OBJECTS = $(OBJDIR)/minimal.$(OBJSUFF)
+OBJECTS = $(PROGRAM).o
 
-.SUFFIXES:
+# implementation
 
-all:    $(OBJDIR) minimal$(GUISUFFIX)
+.SUFFIXES:     .o .cpp
 
-wx:
+.cpp.o :
+       $(CXX) -c `wx-config --cxxflags` -o $@ $<
 
+all:    $(PROGRAM)
 
-motif:
-       $(MAKE) -f makefile.unx GUISUFFIX=_motif GUI=-Dwx_motif GUISUFFIX=_motif OPT='$(OPT)' LDLIBS='$(MOTIFLDLIBS)' WXLIB=$(WXDIR)/lib/libwx_motif.a  OPTIONS='$(OPTIONS)' DEBUG='$(DEBUG)' WARN='$(WARN)' XLIB='$(XLIB)' XINCLUDE='$(XINCLUDE)' XVIEW_LINK=
+$(PROGRAM):    $(OBJECTS)
+       $(CXX) -o $(PROGRAM) $(OBJECTS) `wx-config --libs`
 
-xview:
-       cd $(WXDIR)/src/x; $(MAKE) -f makefile.unx xview
-       $(MAKE) -f makefile.unx GUI=-Dwx_xview GUISUFFIX=_ol CC=$(CC) OPTIONS='$(OPTIONS)' DEBUG='$(DEBUG)' WARN='$(WARN)' XLIB='$(XLIB)' XINCLUDE='$(XINCLUDE)'
-
-hp:
-       cd $(WXDIR)/src/x; $(MAKE) -f makefile.unx hp
-       $(MAKE) -f makefile.unx GUI=-Dwx_motif GUISUFFIX=_hp CC=CC DEBUG='$(DEBUG)' WARN='-w' \
-         XINCLUDE='$(HPXINCLUDE)' XLIB='$(HPXLIB)' XVIEW_LINK='' LDLIBS='$(HPLDLIBS)'
-
-$(OBJDIR):
-       mkdir $(OBJDIR)
-
-minimal$(GUISUFFIX):   $(OBJDIR)/minimal.$(OBJSUFF) $(WXLIB)
-       $(CC) $(LDFLAGS) -o minimal$(GUISUFFIX) $(OBJDIR)/minimal.$(OBJSUFF) $(XVIEW_LINK) $(LDLIBS)
-
-$(OBJDIR)/minimal.$(OBJSUFF):  minimal.$(SRCSUFF)
-       $(CC) -c $(CPPFLAGS) -o $@ minimal.$(SRCSUFF)
-
-clean_motif:
-       $(MAKE) -f makefile.unx GUISUFFIX=_motif cleanany
-
-clean_ol:
-       $(MAKE) -f makefile.unx GUISUFFIX=_ol cleanany
-
-clean_hp:
-       $(MAKE) -f makefile.unx GUISUFFIX=_hp cleanany
-
-cleanany:
-       rm -f $(OBJECTS) minimal$(GUISUFFIX) core
+clean: 
+       rm -f *.o $(PROGRAM)