X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/a4294b7832a5aed3c1cccc06aecd227d43da8830..6c41903ced78c0b4115785aa80a934833abbc1ef:/samples/treectrl/makefile.unx diff --git a/samples/treectrl/makefile.unx b/samples/treectrl/makefile.unx index aa0c92a4ad..71b7088089 100644 --- a/samples/treectrl/makefile.unx +++ b/samples/treectrl/makefile.unx @@ -1,17 +1,23 @@ -# -# File: makefile.unx -# Author: Julian Smart -# Created: 1998 -# Updated: -# Copyright: (c) 1998 Julian Smart -# -# "%W% %G%" -# -# Makefile for treectrl example (UNIX). +# Purpose: makefile for treectrl example (Unix) +# Created: 2000-03-15 -PROGRAM=treetest +CC = gcc -OBJECTS=$(PROGRAM).o +PROGRAM = treectrl -include ../../src/makeprog.env +OBJECTS = $(PROGRAM).o +# implementation + +.SUFFIXES: .o .cpp + +.cpp.o : + $(CC) -c `wx-config --cflags` -o $@ $< + +all: $(PROGRAM) + +$(PROGRAM): $(OBJECTS) + $(CC) -o $(PROGRAM) $(OBJECTS) `wx-config --libs` + +clean: + rm -f *.o $(PROGRAM)