wxWidgets/contrib/samples/gizmos/multicell/makefile.unx
Julian Smart 58580a7e3c Added gizmos hierarchy
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@8116 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2000-08-17 11:53:48 +00:00

25 lines
375 B
Plaintext

# Purpose: makefile for multicell example (Unix)
# Created 2000-07-28
CC = gcc
PROGRAM = mtest
OBJECTS = $(PROGRAM).o ../src/multicell.o
EXTRAINC=-I../include
# 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)