summaryrefslogtreecommitdiff
path: root/tools/cmpi/makefile.unx
diff options
context:
space:
mode:
Diffstat (limited to 'tools/cmpi/makefile.unx')
-rwxr-xr-xtools/cmpi/makefile.unx35
1 files changed, 35 insertions, 0 deletions
diff --git a/tools/cmpi/makefile.unx b/tools/cmpi/makefile.unx
new file mode 100755
index 000000000..7a1c26290
--- /dev/null
+++ b/tools/cmpi/makefile.unx
@@ -0,0 +1,35 @@
+#
+# 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.
+#
+
+CXX = $(shell wx-config --cxx)
+
+PROGRAM = cmpi
+
+OBJECTS = $(PROGRAM).o
+
+# implementation
+
+.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)