Forgot resource sample.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@3956 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
parent
f4c890fdbe
commit
3fd528b939
14
Makefile.in
14
Makefile.in
@ -1,5 +1,5 @@
|
||||
#
|
||||
# This file was automatically generated by tmake at 15:24, 1999/10/12
|
||||
# This file was automatically generated by tmake at 16:24, 1999/10/13
|
||||
# DO NOT CHANGE THIS FILE, YOUR CHANGES WILL BE LOST! CHANGE UNX.T!
|
||||
|
||||
#
|
||||
@ -2378,6 +2378,18 @@ SAMPLES_DIST:
|
||||
cp $(SAMPDIR)/png/*.cpp $(DISTDIR)/samples/png
|
||||
cp $(SAMPDIR)/png/*.h $(DISTDIR)/samples/png
|
||||
cp $(SAMPDIR)/png/*.png $(DISTDIR)/samples/png
|
||||
mkdir $(DISTDIR)/samples/resource
|
||||
cp $(SAMPDIR)/resource/Makefile.in $(DISTDIR)/samples/resource
|
||||
cp $(SAMPDIR)/resource/*.cpp $(DISTDIR)/samples/resource
|
||||
cp $(SAMPDIR)/resource/*.h $(DISTDIR)/samples/resource
|
||||
cp $(SAMPDIR)/resource/*.wxr $(DISTDIR)/samples/resource
|
||||
mkdir $(DISTDIR)/samples/richedit
|
||||
cp $(SAMPDIR)/richedit/Makefile.in $(DISTDIR)/samples/richedit
|
||||
cp $(SAMPDIR)/richedit/*.cpp $(DISTDIR)/samples/richedit
|
||||
cp $(SAMPDIR)/richedit/*.h $(DISTDIR)/samples/richedit
|
||||
cp $(SAMPDIR)/richedit/*.xpm $(DISTDIR)/samples/richedit
|
||||
cp $(SAMPDIR)/richedit/README $(DISTDIR)/samples/richedit
|
||||
cp $(SAMPDIR)/richedit/TODO $(DISTDIR)/samples/richedit
|
||||
mkdir $(DISTDIR)/samples/proplist
|
||||
cp $(SAMPDIR)/proplist/Makefile.in $(DISTDIR)/samples/proplist
|
||||
cp $(SAMPDIR)/proplist/*.cpp $(DISTDIR)/samples/proplist
|
||||
|
@ -2953,6 +2953,7 @@ AC_OUTPUT([
|
||||
samples/printing/Makefile
|
||||
samples/proplist/Makefile
|
||||
samples/richedit/Makefile
|
||||
samples/resource/Makefile
|
||||
samples/sashtest/Makefile
|
||||
samples/scroll/Makefile
|
||||
samples/splitter/Makefile
|
||||
|
@ -934,6 +934,18 @@ SAMPLES_DIST:
|
||||
cp $(SAMPDIR)/png/*.cpp $(DISTDIR)/samples/png
|
||||
cp $(SAMPDIR)/png/*.h $(DISTDIR)/samples/png
|
||||
cp $(SAMPDIR)/png/*.png $(DISTDIR)/samples/png
|
||||
mkdir $(DISTDIR)/samples/resource
|
||||
cp $(SAMPDIR)/resource/Makefile.in $(DISTDIR)/samples/resource
|
||||
cp $(SAMPDIR)/resource/*.cpp $(DISTDIR)/samples/resource
|
||||
cp $(SAMPDIR)/resource/*.h $(DISTDIR)/samples/resource
|
||||
cp $(SAMPDIR)/resource/*.wxr $(DISTDIR)/samples/resource
|
||||
mkdir $(DISTDIR)/samples/richedit
|
||||
cp $(SAMPDIR)/richedit/Makefile.in $(DISTDIR)/samples/richedit
|
||||
cp $(SAMPDIR)/richedit/*.cpp $(DISTDIR)/samples/richedit
|
||||
cp $(SAMPDIR)/richedit/*.h $(DISTDIR)/samples/richedit
|
||||
cp $(SAMPDIR)/richedit/*.xpm $(DISTDIR)/samples/richedit
|
||||
cp $(SAMPDIR)/richedit/README $(DISTDIR)/samples/richedit
|
||||
cp $(SAMPDIR)/richedit/TODO $(DISTDIR)/samples/richedit
|
||||
mkdir $(DISTDIR)/samples/proplist
|
||||
cp $(SAMPDIR)/proplist/Makefile.in $(DISTDIR)/samples/proplist
|
||||
cp $(SAMPDIR)/proplist/*.cpp $(DISTDIR)/samples/proplist
|
||||
|
@ -1,2 +1 @@
|
||||
Makefile.in
|
||||
|
||||
|
@ -1,9 +0,0 @@
|
||||
AUTOMAKE_OPTIONS = 1.3 no-dependencies
|
||||
|
||||
SUFFIXES = .cpp
|
||||
|
||||
DEFS = @DEFS@ $(TOOLKIT_DEF) $(WXDEBUG_DEFINE)
|
||||
|
||||
noinst_PROGRAMS = resource
|
||||
|
||||
resource_SOURCES = resource.cpp
|
21
samples/resource/Makefile.in
Normal file
21
samples/resource/Makefile.in
Normal file
@ -0,0 +1,21 @@
|
||||
#
|
||||
# File: Makefile.in
|
||||
# Author: Julian Smart
|
||||
# Created: 1998
|
||||
# Updated:
|
||||
# Copyright: (c) 1998 Julian Smart
|
||||
#
|
||||
# "%W% %G%"
|
||||
#
|
||||
# Makefile for resource example (UNIX).
|
||||
|
||||
top_srcdir = @top_srcdir@
|
||||
top_builddir = ../..
|
||||
program_dir = samples/resource
|
||||
|
||||
PROGRAM=resource
|
||||
|
||||
OBJECTS=$(PROGRAM).o
|
||||
|
||||
include ../../src/makeprog.env
|
||||
|
51
utils/dialoged/src/Makefile
Normal file
51
utils/dialoged/src/Makefile
Normal file
@ -0,0 +1,51 @@
|
||||
#
|
||||
# File: Makefile
|
||||
# Author: Robert Roebling
|
||||
# Created: 1999
|
||||
# Updated:
|
||||
# Copyright: (c) 1998 Robert Roebling
|
||||
#
|
||||
# Makefile for Dialog Editor (GTK version)
|
||||
#
|
||||
# This makefile requires wxWindows/GTK to be
|
||||
# installed (possibly using "make install")
|
||||
# on your system.
|
||||
#
|
||||
|
||||
CC = g++
|
||||
|
||||
DialogEd: dialoged.o dlghndlr.o edlist.o edtree.o reseditr.o reswrite.o \
|
||||
symbtabl.o winprop.o winstyle.o
|
||||
$(CC) -o DialogEd \
|
||||
dialoged.o dlghndlr.o edlist.o edtree.o reseditr.o reswrite.o \
|
||||
symbtabl.o winprop.o winstyle.o `wx-config --libs`
|
||||
|
||||
dialoged.o: dialoged.cpp
|
||||
$(CC) `wx-config --cflags` -c dialoged.cpp
|
||||
|
||||
dlghndlr.o: dlghndlr.cpp
|
||||
$(CC) `wx-config --cflags` -c dlghndlr.cpp
|
||||
|
||||
edlist.o: edlist.cpp
|
||||
$(CC) `wx-config --cflags` -c edlist.cpp
|
||||
|
||||
edtree.o: edtree.cpp
|
||||
$(CC) `wx-config --cflags` -c edtree.cpp
|
||||
|
||||
reseditr.o: reseditr.cpp
|
||||
$(CC) `wx-config --cflags` -c reseditr.cpp
|
||||
|
||||
reswrite.o: reswrite.cpp
|
||||
$(CC) `wx-config --cflags` -c reswrite.cpp
|
||||
|
||||
symbtabl.o: symbtabl.cpp
|
||||
$(CC) `wx-config --cflags` -c symbtabl.cpp
|
||||
|
||||
winprop.o: winprop.cpp
|
||||
$(CC) `wx-config --cflags` -c winprop.cpp
|
||||
|
||||
winstyle.o: winstyle.cpp
|
||||
$(CC) `wx-config --cflags` -c winstyle.cpp
|
||||
|
||||
clean:
|
||||
rm -f *.o DialogEd
|
Loading…
Reference in New Issue
Block a user