X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/e909371890f73eb9b3ca33d15960d9305ca1b4c2..08a092f9f4de6c80a2d43d4072c379ac84e6cc2f:/samples/minifram/makefile.unx diff --git a/samples/minifram/makefile.unx b/samples/minifram/makefile.unx index 21cab3c677..1dc2872c4d 100644 --- a/samples/minifram/makefile.unx +++ b/samples/minifram/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 minifram example (Unix) +# Created: 2000-03-15 CC = gcc -PROGRAM = test +PROGRAM = minifram OBJECTS = $(PROGRAM).o @@ -31,5 +19,5 @@ all: $(PROGRAM) $(PROGRAM): $(OBJECTS) $(CC) -o $(PROGRAM) $(OBJECTS) `wx-config --libs` -clean: +clean: rm -f *.o $(PROGRAM)