X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/a4294b7832a5aed3c1cccc06aecd227d43da8830..7c0d801cb4b9231b71fb9c7fc69af58f43c1595f:/samples/tab/makefile.unx diff --git a/samples/tab/makefile.unx b/samples/tab/makefile.unx index ad1b7690ec..c496a336b3 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=tab +CC = gcc -OBJECTS=$(PROGRAM).o +PROGRAM = tab -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)