X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/a4294b7832a5aed3c1cccc06aecd227d43da8830..4fcd60c72f6b90f5063f7000ff5a80a9004055a3:/samples/toolbar/makefile.unx diff --git a/samples/toolbar/makefile.unx b/samples/toolbar/makefile.unx index 0b249d4c88..91d51a0bd1 100644 --- a/samples/toolbar/makefile.unx +++ b/samples/toolbar/makefile.unx @@ -1,18 +1,23 @@ -# -# File: makefile.unx -# Author: Julian Smart -# Created: 1998 -# Updated: -# Copyright: (c) 1998 Julian Smart -# -# "%W% %G%" -# -# Makefile for toolbar example (UNIX). +# Purpose: makefile for toolbar example (Unix) +# Created: 2000-03-14 -PROGRAM=test +CC = gcc -OBJECTS=$(PROGRAM).o +PROGRAM = toolbar -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)