webengine/osswebengine/WebKitTools/mangleme/Makefile
author William Roberts <williamr@symbian.org>
Fri, 23 Jul 2010 12:08:17 +0100
branchGCC_SURGE
changeset 89 184e728497f3
parent 0 dd21522fd290
permissions -rw-r--r--
GCC won't allow "IMPORT" on the definition of a function, in this case an inline function - added to bug 2962 The error message is "function 'void KJS::DebuggerImp::abort()' definition is marked dllimport"

#
# HTML manglizer
# --------------
# Copyright (C) 2004 by Michal Zalewski <lcamtuf@coredump.cx>
#
# Makefile adapted for WebKit project.

CC = gcc
CFLAGS = -Wall -O3 -fomit-frame-pointer -funroll-loops
OUTDIR = ../../WebKitBuild/mangleme

all: $(OUTDIR)/mangle.cgi $(OUTDIR)/remangle.cgi

$(OUTDIR)/%.cgi: %.cgi.c
	if [ ! -d $(OUTDIR) ]; then mkdir -p $(OUTDIR); fi
	$(CC) $(CFLAGS) $< -o $(OUTDIR)/$*.cgi