X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/82052affa7fae89b90755ef4785a2f8b843d5dad..f94dd12dc18afd8518a88e9edac75f6dff907c9c:/samples/thread/Makefile.in diff --git a/samples/thread/Makefile.in b/samples/thread/Makefile.in index 237f2030f7..03c16df77a 100644 --- a/samples/thread/Makefile.in +++ b/samples/thread/Makefile.in @@ -1,26 +1,15 @@ -# WXXT base directory -WXBASEDIR=@WXBASEDIR@ +# Purpose: makefile for thread example (UNIX). +# Created: 2000-03-15 -# set the OS type for compilation -OS=@OS@ -# compile a library only -RULE=bin +top_srcdir = @top_srcdir@/.. +top_builddir = ../.. +program_dir = samples/thread -# define library name -BIN_TARGET=test -# define library sources -BIN_SRC=\ -test.cpp +PROGRAM=thread -#define library objects -BIN_OBJ=\ -test.o +OBJECTS =$(PROGRAM).o +DEPFILES=$(PROGRAM).d -# additional things needed to link -BIN_LINK= $(THREADS_LINK) +include ../../src/makeprog.env -# additional things needed to compile -ADD_COMPILE= - -# include the definitions now -include ../../../template.mak +@IF_GNU_MAKE@-include $(DEPFILES)