Fixed binary search: no more infinite loops when vendor is unknown.
[tangerine.git] / workbench / classes / zune / betterstring / mcc / Makefile.os4
blob32e98cfb69e8f461f45a31e03a1616aedb22a8fb
1 #/***************************************************************************
3 # BetterString.mcc - A better String gadget MUI Custom Class
4 # Copyright (C) 1997-2000 Allan Odgaard
5 # Copyright (C) 2005 by BetterString.mcc Open Source Team
7 # This library is free software; you can redistribute it and/or
8 # modify it under the terms of the GNU Lesser General Public
9 # License as published by the Free Software Foundation; either
10 # version 2.1 of the License, or (at your option) any later version.
12 # This library is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15 # Lesser General Public License for more details.
17 # BetterString class Support Site:  http://www.sf.net/projects/bstring-mcc/
19 # $Id: Makefile.os4,v 1.1 2005/04/21 20:52:04 damato Exp $
21 #***************************************************************************/
23 # Programs
24 CC    = ppc-amigaos-gcc
25 STRIP = ppc-amigaos-strip
26 RM    = rm -f
27 RMDIR = rm -rf
28 MKDIR = mkdir
29 CP    = cp
31 # Directories
32 OBJDIR = .obj_os4
33 BINDIR = bin_os4
35 # Compiler/Linker flags
36 CPU      = -mcpu=604e
37 CPUFLAGS = -mmultiple
38 CDEFS    = -D__BS_VERDATE=\"`date +%d.%m.%Y`\" -D__BS_VERDAYS="`expr \`date +%s\` / 86400 - 2922`"
39 WARN     = -W -Wall
40 OPTFLAGS = -O3 -finline-functions -fomit-frame-pointer -funroll-loops
41 DEBUG    = -DWITH_DEBUG -g -O0
42 REDEFINE =
43 CFLAGS   = -I. -I../mcp -I../includes $(CPU) $(CPUFLAGS) $(WARN) $(OPTFLAGS) $(DEBUG)\
44            -D__USE_INLINE__ $(REDEFINE) -c
45 LDFLAGS  = -nostartfiles
46 LDLIBS   =
48 # CPU and DEBUG can be defined outside, defaults to above
49 # using e.g. "make DEBUG= CPU=-mcpu=603e" produces optimized non-debug PPC-603e version
51 # OPTFLAGS are disabled by DEBUG normally!
53 # ignored warnings are:
54 # none - because we want to compile with -Wall all the time
57 MCCTARGET = $(BINDIR)/BetterString.mcc
58 TESTTARGET= $(BINDIR)/BetterString-Test
60 M68KSTUBS = $(OBJDIR)/mccclass_68k.o
62 MCCOBJS = $(OBJDIR)/library.o \
63           $(OBJDIR)/AllocBitMap.o \
64           $(OBJDIR)/AllocFunctions.o \
65           $(OBJDIR)/Dispatcher.o \
66           $(OBJDIR)/FileNameCompl.o \
67           $(OBJDIR)/GetSetAttrs.o \
68           $(OBJDIR)/HandleInput.o \
69           $(OBJDIR)/InitConfig.o \
70           $(OBJDIR)/PrintString.o \
71           $(OBJDIR)/TextFunctions.o
74 TESTOBJS= $(OBJDIR)/BetterString-Test.o \
75           $(OBJDIR)/AllocBitMap.o \
76           $(OBJDIR)/AllocFunctions.o \
77           $(OBJDIR)/Dispatcher.o \
78           $(OBJDIR)/FileNameCompl.o \
79           $(OBJDIR)/GetSetAttrs.o \
80           $(OBJDIR)/HandleInput.o \
81           $(OBJDIR)/InitConfig.o \
82           $(OBJDIR)/PrintString.o \
83           $(OBJDIR)/TextFunctions.o
87 all: $(BINDIR) $(OBJDIR) $(MCCTARGET) $(TESTTARGET)
89 # make the object directories
90 $(OBJDIR):
91         @printf '\033[33mGenerating $@ directory\033[0m\n'
92         @$(MKDIR) $(OBJDIR)
94 # make the binary directories
95 $(BINDIR):
96         @printf '\033[33mGenerating $@ directory\033[0m\n'
97         @$(MKDIR) $(BINDIR)
101 $(OBJDIR)/%.o: %.c
102         @printf '\033[32mCompiling $<\033[0m\n'
103         @$(CC) $(CFLAGS) $< -o $@ -DNO_PPCINLINE_STDARG
105 $(OBJDIR)/mccclass_68k.o: ../includes/mccclass_68k.c
106         @printf '\033[32mCompiling $<\033[0m\n'
107         @$(CC) $(CFLAGS) $< -o $@
111 $(MCCTARGET): $(M68KSTUBS) $(MCCOBJS)
112         @printf '\033[32mLinking \033[1m$@\033[0m\n'
113         @$(CC) $(LDFLAGS) -o $@.debug $(MCCOBJS) $(M68KSTUBS) $(LDLIBS)
114         @$(STRIP) -o $@ $@.debug
116 $(TESTTARGET): $(TESTOBJS)
117         @printf '\033[32mLinking \033[1m$@\033[0m\n'
118         @$(CC) -o $@.debug $(TESTOBJS) $(LDLIBS)
119         @$(STRIP) -o $@ $@.debug
121 $(OBJDIR)/library.o: library.c ../includes/mccheader.c \
122   BetterString_mcc.h private.h rev.h
124 $(OBJDIR)/library.o: library.c ../includes/mccheader.c BetterString_mcc.h \
125   private.h rev.h
129 .PHONY: clean
130 clean:
131         -$(RM) $(MCCTARGET) $(MCCTARGET).debug $(TESTTARGET) $(TESTTARGET).debug $(MCCOBJS) $(TESTOBJS) $(M68KSTUBS)
133 .PHONY: distclean
134 distclean: clean
135         -$(RMDIR) $(OBJDIR)
136         -$(RMDIR) $(BINDIR)