1
0
mirror of https://github.com/adtools/clib2.git synced 2025-12-08 14:59:05 +00:00

- 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
This commit is contained in:
Olaf Barthel
2006-06-22 09:30:25 +00:00
parent d4528b2862
commit 75a85db1a7

View File

@ -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)
###############################################################################