wxWidgets/samples/event/makefile.unx
2001-01-31 16:00:00 +00:00

24 lines
331 B
Plaintext

# Purpose: makefile for event example (Unix)
# Created: 2001-01-31
CC = gcc
PROGRAM = event
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)