wxWidgets/utils/makegen/templates/makefile.unx
2000-01-03 13:45:00 +00:00

24 lines
326 B
Plaintext

# Purpose: makefile for #NAME example (Unix)
# Created: #DATE
CC = gcc
PROGRAM = #NAME
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)