X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/4b5f3fe655deeb91d5d3abe8fad30c4a1cae63dc..dd33b115d6fed7df33b76597cf52b0db7d88bdeb:/samples/tab/makefile.unx diff --git a/samples/tab/makefile.unx b/samples/tab/makefile.unx index 1c66f71f22..99cc875ad2 100644 --- a/samples/tab/makefile.unx +++ b/samples/tab/makefile.unx @@ -1,17 +1,23 @@ -# -# File: makefile.unx -# Author: Julian Smart -# Created: 1998 -# Updated: -# Copyright: (c) 1998 Julian Smart -# -# "%W% %G%" -# -# Makefile for tab example (UNIX). +# Purpose: makefile for tab example (Unix) +# Created: 2000-03-15 -PROGRAM=test +CXX = $(shell wx-config --cxx) -OBJECTS=$(PROGRAM).o +PROGRAM = tab -include ../../src/makeprog.env +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)