]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/contrib/activex/wxie/makefile
Lindsay Mathieson's newest wxActiveX class has been wrapped into a new
[wxWidgets.git] / wxPython / contrib / activex / wxie / makefile
diff --git a/wxPython/contrib/activex/wxie/makefile b/wxPython/contrib/activex/wxie/makefile
new file mode 100644 (file)
index 0000000..f387213
--- /dev/null
@@ -0,0 +1,24 @@
+CC = gcc
+
+PROGRAM = wxIE
+
+CFLAGS = -I/m/snowball/icicle/gswd/devenv/include -D__WXMOTIF__
+LFLAGS = -L/m/snowball/icicle/devenv/lib
+
+# implementation
+
+.SUFFIXES:      .o .cpp
+
+SOURCES:sh= /bin/ls *.cpp
+
+OBJECTS = $(SOURCES:.cpp=.o)
+
+.cpp.o :
+       $(CC) -c $(CFLAGS) `wx-config --cflags` -o $@ $<
+
+$(PROGRAM): $(OBJECTS)
+       $(CC) -o $(PROGRAM) $(OBJECTS) $(LFLAGS) `wx-config --libs`
+
+clean:
+       rm -f *.o $(PROGRAM)
+