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