4db94043cb
Files correlati : Commento : Spostamento in libraries delle librerie esterne di Campo per una maggiore pulizia e organizzazione git-svn-id: svn://10.65.10.50/branches/R_10_00@24150 c028cbd2-c16b-5b4b-a496-9718f37d4682
36 lines
731 B
Plaintext
36 lines
731 B
Plaintext
#
|
|
# 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 = fractal
|
|
|
|
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)
|