From 3d11398006f2253f99519e919e7d0d0b85fb6b79 Mon Sep 17 00:00:00 2001 From: John Mark Bell Date: Sat, 21 Jul 2007 22:17:07 +0000 Subject: Purge NCOS build options; these have been redundant for ages. svn path=/trunk/netsurf/; revision=3454 --- makefile | 25 +++---------------------- posix.mk | 3 +-- riscos.mk | 2 -- utils/config.h | 9 ++++----- 4 files changed, 8 insertions(+), 31 deletions(-) diff --git a/makefile b/makefile index 0e11c0c89..f823df659 100644 --- a/makefile +++ b/makefile @@ -9,12 +9,11 @@ # riscos -- standard RISC OS build # riscos_small -- identical to "riscos", but linked with smaller libraries # (no openssl, and libcurl without ssl support) -# ncos -- NCOS build (variant of RISC OS for Network Computers) # debug -- command line Unix/Linux, for debugging # riscos_debug -- a cross between "riscos" and "debug" # gtk -- experimental gtk version # -# "riscos", "riscos_small", "ncos", and "riscos_debug" can be compiled under +# "riscos", "riscos_small", and "riscos_debug" can be compiled under # RISC OS, or cross-compiled using GCCSDK. SYSTEM_CC ?= gcc @@ -53,8 +52,6 @@ OBJECTS_RISCOS += progress_bar.o status_bar.o # riscos/gui/ OBJECTS_RISCOS_SMALL = $(OBJECTS_RISCOS) -OBJECTS_NCOS = $(OBJECTS_RISCOS) - OBJECTS_DEBUG = $(OBJECTS_COMMON) $(OBJECTS_IMAGE) OBJECTS_DEBUG += debug_bitmap.o filetyped.o fontd.o netsurfd.o # debug/ @@ -83,10 +80,6 @@ OBJDIR_RISCOS_SMALL = arm-riscos-aof-small SOURCES_RISCOS_SMALL=$(OBJECTS_RISCOS_SMALL:.o=.c) OBJS_RISCOS_SMALL=$(OBJECTS_RISCOS_SMALL:%.o=$(OBJDIR_RISCOS_SMALL)/%.o) -OBJDIR_NCOS = arm-ncos-aof -SOURCES_NCOS=$(OBJECTS_NCOS:.o=.c) -OBJS_NCOS=$(OBJECTS_NCOS:%.o=$(OBJDIR_NCOS)/%.o) - OBJDIR_DEBUG = $(shell $(SYSTEM_CC) -dumpmachine)-debug SOURCES_DEBUG=$(OBJECTS_DEBUG:.o=.c) OBJS_DEBUG=$(OBJECTS_DEBUG:%.o=$(OBJDIR_DEBUG)/%.o) @@ -125,7 +118,6 @@ CFLAGS_RISCOS = -std=c99 -D_BSD_SOURCE -D_POSIX_C_SOURCE -Driscos -DBOOL_DEFINED $(WARNFLAGS) -I. $(PLATFORM_CFLAGS_RISCOS) -mpoke-function-name \ # -include utils/memdebug.h CFLAGS_RISCOS_SMALL = $(CFLAGS_RISCOS) -Dsmall -CFLAGS_NCOS = $(CFLAGS_RISCOS) -Dncos CFLAGS_DEBUG = -std=c99 -D_BSD_SOURCE -DDEBUG_BUILD $(WARNFLAGS) -I. \ $(PLATFORM_CFLAGS_DEBUG) -g CFLAGS_GTK = -std=c99 -Dgtk -Dnsgtk \ @@ -149,7 +141,6 @@ endif AFLAGS_RISCOS = -I..,. $(PLATFORM_AFLAGS_RISCOS) AFLAGS_RISCOS_SMALL = $(AFLAGS_RISCOS) -Dsmall -AFLAGS_NCOS = $(AFLAGS_RISCOS) -Dncos # targets riscos: $(RUNIMAGE) @@ -159,10 +150,6 @@ riscos_small: u!RunImage,ff8 u!RunImage,ff8 : $(OBJS_RISCOS_SMALL) $(CC) -o $@ $(LDFLAGS_SMALL) $^ -ncos: $(NCRUNIMAGE) -$(NCRUNIMAGE) : $(OBJS_NCOS) - $(CC) -o $@ $(LDFLAGS_RISCOS) $^ - debug: nsdebug nsdebug: $(OBJS_DEBUG) $(CC_DEBUG) -o $@ $(LDFLAGS_DEBUG) $^ @@ -186,9 +173,6 @@ $(OBJDIR_RISCOS)/%.o : %.c $(OBJDIR_RISCOS_SMALL)/%.o : %.c @echo "==> $<" @$(CC) -o $@ -c $(CFLAGS_RISCOS_SMALL) $< -$(OBJDIR_NCOS)/%.o : %.c - @echo "==> $<" - @$(CC) -o $@ -c $(CFLAGS_NCOS) $< $(OBJDIR_DEBUG)/%.o : %.c @echo "==> $<" @$(CC_DEBUG) -o $@ -c $(CFLAGS_DEBUG) $< @@ -203,9 +187,6 @@ $(OBJDIR_RISCOS)/%.o : %.s $(OBJDIR_RISCOS_SMALL)/%.o : %.s @echo "==> $<" $(ASM) -o $@ -c $(AFLAGS_RISCOS_SMALL) $< -$(OBJDIR_NCOS)/%.o : %.s - @echo "==> $<" - $(ASM) -o $@ -c $(AFLAGS_NCOS) $< # Generate dependencies. # To disable automatic regeneration of dependencies (eg. if perl is not @@ -215,7 +196,7 @@ $(OBJDIR_NCOS)/%.o : %.s depend: css/css_enum.c css/parser.c css/scanner.c utils/translit.c */*.[ch] */*/*.[ch] @echo "--> modified files $?" @echo "--> updating dependencies" - @-mkdir -p $(OBJDIR_RISCOS) $(OBJDIR_RISCOS_SMALL) $(OBJDIR_NCOS) $(OBJDIR_DEBUG) $(OBJDIR_GTK) - @perl scandeps $(OBJDIR_RISCOS) $(OBJDIR_RISCOS_SMALL) $(OBJDIR_NCOS) $(OBJDIR_DEBUG) $(OBJDIR_GTK) -- $^ > depend + @-mkdir -p $(OBJDIR_RISCOS) $(OBJDIR_RISCOS_SMALL) $(OBJDIR_DEBUG) $(OBJDIR_GTK) + @perl scandeps $(OBJDIR_RISCOS) $(OBJDIR_RISCOS_SMALL) $(OBJDIR_DEBUG) $(OBJDIR_GTK) -- $^ > depend include depend diff --git a/posix.mk b/posix.mk index 34cbcafed..b2c5175fa 100644 --- a/posix.mk +++ b/posix.mk @@ -26,7 +26,6 @@ LDFLAGS_DEBUG := $(subst -ldl,,$(LDFLAGS_DEBUG)) endif RUNIMAGE = !NetSurf/!RunImage,ff8 -NCRUNIMAGE = !NCNetSurf/!RunImage,ff8 # special cases - in here, cos RISC OS can't cope :( css/css_enum.c css/css_enum.h: css/css_enums css/makeenum @@ -40,7 +39,7 @@ utils/translit.c: transtab # remove generated files - again, RISC OS fails it clean: - -rm $(OBJDIR_RISCOS)/* $(OBJDIR_RISCOS_SMALL)/* $(OBJDIR_NCOS)/* \ + -rm $(OBJDIR_RISCOS)/* $(OBJDIR_RISCOS_SMALL)/* \ $(OBJDIR_DEBUG)/* $(OBJDIR_GTK)/* \ css/css_enum.c css/css_enum.h \ css/parser.c css/parser.h css/scanner.c \ diff --git a/riscos.mk b/riscos.mk index c11ace71c..3ca148104 100644 --- a/riscos.mk +++ b/riscos.mk @@ -15,7 +15,6 @@ LDFLAGS_SMALL = NSLibs:lib/libxml2 NSLibs:lib/libz NSLibs:lib/libcurl \ NSLibs:lib/libjpeg OSLib:o.oslib32 RUNIMAGE = !NetSurf/!RunImage -NCRUNIMAGE = !NCNetSurf/!RunImage # special cases css/css_enum.c css/css_enum.h: css/css_enums css/makeenum @@ -37,7 +36,6 @@ utils/translit.c: transtab clean: -wipe $(OBJDIR_RISCOS).* ~CFR~V -wipe $(OBJDIR_RISCOS_SMALL).* ~CFR~V - -wipe $(OBJDIR_NCOS).* ~CFR~V -wipe $(OBJDIR_DEBUG).* ~CFR~V -wipe $(OBJDIR_GTK).* ~CFR~V -wipe css.c.css_enum ~CFR~V diff --git a/utils/config.h b/utils/config.h index 8c7e1477c..3dbc0a6df 100644 --- a/utils/config.h +++ b/utils/config.h @@ -2,8 +2,7 @@ * This file is part of NetSurf, http://netsurf-browser.org/ * Licensed under the GNU General Public License, * http://www.opensource.org/licenses/gpl-license - * Copyright 2003,4 John M Bell - * Copyright 2004 Andrew Timmins + * Copyright 2003-7 John M Bell */ #ifndef _NETSURF_UTILS_CONFIG_H_ @@ -39,7 +38,7 @@ char *strndup(const char *s, size_t n); #define WITH_JPEG #define WITH_MNG #define WITH_GIF -#if defined(riscos) || defined(ncos) +#if defined(riscos) #define WITH_NS_SVG /* internal SVG renderer */ #define WITH_DRAW #define WITH_SPRITE @@ -47,7 +46,7 @@ char *strndup(const char *s, size_t n); #endif /* Platform specific features */ -#if defined(riscos) || defined(ncos) +#if defined(riscos) /* Plugin module */ #define WITH_PLUGIN /* Acorn URI protocol support */ @@ -71,7 +70,7 @@ char *strndup(const char *s, size_t n); #error Cannot build WITH_NS_SVG and WITH_RSVG both enabled #endif -#if defined(riscos) || defined(ncos) || defined(DEBUG_BUILD) +#if defined(riscos) || defined(DEBUG_BUILD) /* Export modules */ #define WITH_SAVE_COMPLETE #define WITH_DRAW_EXPORT -- cgit v1.2.3