~brian-sidebotham/wxwidgets-cmake/wxpython-2.9.4

« back to all changes in this revision

Viewing changes to wxPython/contrib/activex/wxie/makefile

  • Committer: Brian Sidebotham
  • Date: 2013-08-03 14:30:08 UTC
  • Revision ID: brian.sidebotham@gmail.com-20130803143008-c7806tkych1tp6fc
Initial import into Bazaar

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
CC = gcc
 
2
 
 
3
PROGRAM = wxIE
 
4
 
 
5
CFLAGS = -I/m/snowball/icicle/gswd/devenv/include -D__WXMOTIF__
 
6
LFLAGS = -L/m/snowball/icicle/devenv/lib
 
7
 
 
8
# implementation
 
9
 
 
10
.SUFFIXES:      .o .cpp
 
11
 
 
12
SOURCES:sh= /bin/ls *.cpp
 
13
 
 
14
OBJECTS = $(SOURCES:.cpp=.o)
 
15
 
 
16
.cpp.o :
 
17
        $(CC) -c $(CFLAGS) `wx-config --cflags` -o $@ $<
 
18
 
 
19
$(PROGRAM): $(OBJECTS)
 
20
        $(CC) -o $(PROGRAM) $(OBJECTS) $(LFLAGS) `wx-config --libs`
 
21
 
 
22
clean:
 
23
        rm -f *.o $(PROGRAM)
 
24