projects
/
wxWidgets.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
Added code to the RIGHT CLICK popup dialog to show the type:name of the widget/dialog...
[wxWidgets.git]
/
utils
/
makegen
/
templates
/
makefile.unx
1
# Purpose: makefile for #NAME example (Unix)
2
# Created: #DATE
3
4
CC = gcc
5
6
PROGRAM = #NAME
7
8
OBJECTS = $(PROGRAM).o
9
10
# implementation
11
12
.SUFFIXES: .o .cpp
13
14
.cpp.o :
15
$(CC) -c `wx-config --cflags` -o $@ $<
16
17
all: $(PROGRAM)
18
19
$(PROGRAM): $(OBJECTS)
20
$(CC) -o $(PROGRAM) $(OBJECTS) `wx-config --libs`
21
22
clean:
23
rm -f *.o $(PROGRAM)