-Removed Tup leftovers

main
Harry van Haaren 2013-09-16 19:52:09 +01:00
parent f55707035c
commit f46b85b4bc
12 changed files with 0 additions and 125 deletions

14
Tupfile
View File

@ -1,14 +0,0 @@
# Linking / final steps for Luppp
# GENERAL
LDFLAGS +=`pkg-config --libs jack sndfile cairomm-1.0 ntk ntk_images`
# CONFIGURE
ifeq (@(LUPPP_BUILD_TESTS),y)
LDFLAGS +=-lgcov
endif
# LINK
: src/*.o src/avtk/*.o src/cjson/*.o src/controller/*.o src/dsp/*.o src/observer/*.o src/state/*.o src/tests/*.o \
|> g++ %f $(LDFLAGS) -o %o && touch build.success |> luppp | build.success

View File

@ -1,2 +0,0 @@
# no build flags for release mode

View File

@ -1,4 +0,0 @@
# no build flags for release mode
CONFIG_LUPPP_BUILD_TESTS=y

View File

@ -1,8 +0,0 @@
#!/bin/bash
# sometimes Tup gives errors on FUSE mount or something
# just deleting .tup/mnt/* makes tup re-mount things, fixing it:
rm -rf .tup/mnt/*
rm -rf build/src/*
rm -rf buildTest/src/*

View File

@ -1,16 +0,0 @@
# Tup build file for Luppp
# GENERAL
OUTPUT=%B.o
CFLAGS += -g -Wall -march=native -msse -mfpmath=sse -ffast-math
INCLUDES += `pkg-config --cflags jack sndfile cairomm-1.0 ntk ntk_images`
ifeq (@(LUPPP_BUILD_TESTS),y)
OUTPUT+=| %B.gcno
CFLAGS += -fprofile-arcs -ftest-coverage -DBUILD_TESTS -DBUILD_COVERAGE_TEST -DDEBUG_KILL_ON_ERR
endif
# COMPILE
: foreach *.cxx |> g++ $(CFLAGS) -c %f $(INCLUDES) -o %o |> $(OUTPUT)

View File

@ -1,16 +0,0 @@
# Tup build file for Luppp
# GENERAL
OUTPUT=%B.o
CFLAGS += -g -Wall -march=native -msse -mfpmath=sse -ffast-math
INCLUDES += `pkg-config --cflags jack sndfile cairomm-1.0 ntk ntk_images`
ifeq (@(LUPPP_BUILD_TESTS),y)
OUTPUT+=| %B.gcno
CFLAGS += -fprofile-arcs -ftest-coverage -DBUILD_TESTS -DBUILD_COVERAGE_TEST -DDEBUG_KILL_ON_ERR
endif
# COMPILE
: foreach *.cxx |> g++ $(CFLAGS) -c %f $(INCLUDES) -o %o |> $(OUTPUT)

View File

@ -1,16 +0,0 @@
# Tup build file for Luppp
# GENERAL
OUTPUT=%B.o
CFLAGS += -g -Wall -march=native -msse -mfpmath=sse -ffast-math
INCLUDES += `pkg-config --cflags jack sndfile cairomm-1.0 ntk ntk_images`
ifeq (@(LUPPP_BUILD_TESTS),y)
OUTPUT+=| %B.gcno
CFLAGS += -fprofile-arcs -ftest-coverage -DBUILD_TESTS -DBUILD_COVERAGE_TEST -DDEBUG_KILL_ON_ERR
endif
# COMPILE
: foreach *.c |> g++ $(CFLAGS) -c %f $(INCLUDES) -o %o |> $(OUTPUT)

View File

@ -1,9 +0,0 @@
# Tup build file for Luppp
# GENERAL
CFLAGS += -g -Wall -march=native -msse -mfpmath=sse -ffast-math
INCLUDES += `pkg-config --cflags jack sndfile cairomm-1.0 ntk ntk_images`
# COMPILE
: foreach *.cxx |> ^c^ g++ $(CFLAGS) -c %f $(INCLUDES) -o %o |> %B.o

View File

@ -1,9 +0,0 @@
# Tup build file for Luppp
# GENERAL
CFLAGS += -g -Wall -march=native -msse -mfpmath=sse -ffast-math
INCLUDES += `pkg-config --cflags jack sndfile cairomm-1.0 ntk ntk_images`
# COMPILE
: foreach *.cxx |> ^c^ g++ $(CFLAGS) -c %f $(INCLUDES) -o %o |> %B.o

View File

@ -1,9 +0,0 @@
# Tup build file for Luppp
# GENERAL
CFLAGS += -g -Wall -march=native -msse -mfpmath=sse -ffast-math
INCLUDES += `pkg-config --cflags jack sndfile cairomm-1.0 ntk ntk_images`
# COMPILE
: foreach *.cxx |> ^c^ g++ $(CFLAGS) -c %f $(INCLUDES) -o %o |> %B.o

View File

@ -1,9 +0,0 @@
# Tup build file for Luppp
# GENERAL
CFLAGS += -g -Wall -march=native -msse -mfpmath=sse -ffast-math
INCLUDES += `pkg-config --cflags jack sndfile cairomm-1.0 ntk ntk_images`
# COMPILE
: foreach *.cxx |> g++ $(CFLAGS) -c %f $(INCLUDES) -o %o |> %B.o

View File

@ -1,13 +0,0 @@
# Tup build file for Luppp
# GENERAL
CFLAGS += -g -Wall -march=native -msse -mfpmath=sse -ffast-math
INCLUDES += `pkg-config --cflags jack sndfile cairomm-1.0 ntk ntk_images`
# CONFIGURE
ifeq (@(LUPPP_BUILD_TESTS),y)
CFLAGS += -fprofile-arcs -ftest-coverage -DBUILD_TESTS -DBUILD_COVERAGE_TEST -DDEBUG_KILL_ON_ERR
: foreach *.cxx |> g++ $(CFLAGS) -c %f $(INCLUDES) -o %o |> %B.o | %B.gcno
endif