Sophie

Sophie

distrib > Mandriva > 2006.0 > i586 > by-pkgid > f991ed2d565451d4c13b5c7fca6ecab1 > files > 998

libwxgtk2.4-devel-2.4.2-8mdk.i586.rpm

# Purpose: makefile for thread example (Unix)
# Created: 2000-03-15

CXX = $(shell wx-config --cxx)

PROGRAM = thread

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)