X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/4a0c68a70be35dcf42e9ff1d43f0a4e444cf8e50..14dd645ee16eb022afb19f35d0c8cfdf2d3cdee9:/samples/grid/makefile.unx diff --git a/samples/grid/makefile.unx b/samples/grid/makefile.unx index 21cab3c677..a80a6ec93e 100644 --- a/samples/grid/makefile.unx +++ b/samples/grid/makefile.unx @@ -1,21 +1,9 @@ -# -# File: Makefile for samples -# Author: Robert Roebling -# Created: 1999 -# Updated: -# Copyright: (c) 1998 Robert Roebling -# -# This makefile requires a Unix version of wxWindows -# to be installed on your system. This is most often -# done typing "make install" when using the complete -# sources of wxWindows or by installing the two -# RPM packages wxGTK.XXX.rpm and wxGTK-devel.XXX.rpm -# under Linux. -# +# Purpose: makefile for grid example (Unix) +# Created: 2000-03-15 CC = gcc -PROGRAM = test +PROGRAM = grid OBJECTS = $(PROGRAM).o @@ -31,5 +19,5 @@ all: $(PROGRAM) $(PROGRAM): $(OBJECTS) $(CC) -o $(PROGRAM) $(OBJECTS) `wx-config --libs` -clean: +clean: rm -f *.o $(PROGRAM)