X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/01111366c9b4ea40eee7f4b13ddfe6f6b9f886db..f9ee64b1356530b7f5c957d250d2a1dcbef60f60:/samples/image/Makefile.in diff --git a/samples/image/Makefile.in b/samples/image/Makefile.in index d8cbc50a2a..3cf0907803 100644 --- a/samples/image/Makefile.in +++ b/samples/image/Makefile.in @@ -1,26 +1,26 @@ -# WXXT base directory -WXBASEDIR=@WXBASEDIR@ +# +# File: makefile.unx +# Author: Julian Smart +# Created: 1998 +# Updated: +# Copyright: (c) 1998 Julian Smart +# +# "%W% %G%" +# +# Makefile for image example (UNIX). -# set the OS type for compilation -OS=@OS@ -# compile a library only -RULE=bin +top_srcdir = @top_srcdir@/.. +top_builddir = ../.. +program_dir = samples/image -# define library name -BIN_TARGET=image -# define library sources -BIN_SRC=\ -image.cpp +DATAFILES = horse.png horse.jpg horse.bmp horse.gif horse.pcx horse.pnm \ + horse.tif horse.xpm smile.xbm horse.cur horse.ico -#define library objects -BIN_OBJ=\ -image.o +PROGRAM=image -# additional things needed to link -BIN_LINK= +OBJECTS =$(PROGRAM).o +DEPFILES=$(PROGRAM).d -# additional things needed to compile -ADD_COMPILE= +include ../../src/makeprog.env -# include the definitions now -include ../../../template.mak +@IF_GNU_MAKE@-include $(DEPFILES)