# under Linux.
#
-CC = gcc
-
PROGRAM = dialogs
-$(PROGRAM): $(PROGRAM).o
- $(CC) -o $(PROGRAM) \
- $(PROGRAM).o `wx-config --libs`
+CXX = $(shell wx-config --cxx)
+
+OBJECTS = $(PROGRAM).o
+
+# implementation
+
+.SUFFIXES: .o .cpp
+
+.cpp.o :
+ $(CXX) -c `wx-config --cxxflags` -o $@ $<
+
+all: $(PROGRAM)
-$(PROGRAM).o: $(PROGRAM).cpp
- $(CC) `wx-config --cflags` -c $(PROGRAM).cpp
+$(PROGRAM): $(OBJECTS)
+ $(CXX) -o $(PROGRAM) $(OBJECTS) `wx-config --libs`
clean:
rm -f *.o $(PROGRAM)