makefile updates,

minor doc updates


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@4645 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robert Roebling
1999-11-21 19:28:15 +00:00
parent 8a29359071
commit e909371890
29 changed files with 787 additions and 90 deletions

View File

@@ -13,16 +13,23 @@
# under Linux.
#
CC = gcc
PROGRAM = dialogs
$(PROGRAM): $(PROGRAM).o
$(CC) -o $(PROGRAM) \
$(PROGRAM).o `wx-config --libs`
CC = gcc
$(PROGRAM).o: $(PROGRAM).cpp
$(CC) `wx-config --cflags` -c $(PROGRAM).cpp
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)