From 75a85db1a74fb71f0152d46db719816e15ebf3b0 Mon Sep 17 00:00:00 2001 From: Olaf Barthel Date: Thu, 22 Jun 2006 09:30:25 +0000 Subject: [PATCH] - Added the constructor begin/end files to the OS4 build makefile for the skeleton library. git-svn-id: file:///Users/olsen/Code/migration-svn-zu-git/logical-line-staging/clib2/trunk@15104 87f5fb63-7c3d-0410-a384-fd976d0f7a62 --- library/skeleton_library/GNUmakefile.os4 | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/library/skeleton_library/GNUmakefile.os4 b/library/skeleton_library/GNUmakefile.os4 index 94de584..1e3be7a 100755 --- a/library/skeleton_library/GNUmakefile.os4 +++ b/library/skeleton_library/GNUmakefile.os4 @@ -1,5 +1,5 @@ # -# $Id: GNUmakefile.os4,v 1.4 2006-01-08 12:06:14 obarthel Exp $ +# $Id: GNUmakefile.os4,v 1.5 2006-06-22 09:30:25 obarthel Exp $ # # :ts=4 # @@ -40,6 +40,8 @@ CPU = OPTIONS = -DNDEBUG -mcrt=clib2-ts OPTIMIZE = -O DEBUG = -ggdb +CRTBEGIN = /usr/local/amiga/ppc-amigaos/clib2/lib/crtbegin.o +CRTEND = /usr/local/amiga/ppc-amigaos/clib2/lib/crtend.o ############################################################################### @@ -52,7 +54,7 @@ OBJS = \ ############################################################################### -LIBS = -lc -lamiga +LIBS = $(CRTBEGIN) -lc -lamiga $(CRTEND) ###############################################################################