Remove SIM_makefile_overrides

I failed to commit the S_define for this sim and have since cleaned it
away. I'm not remaking it.

Refs #626
This commit is contained in:
Derek Bankieris 2018-07-05 13:03:42 -05:00
parent 402f7c152b
commit 442fcadc05
17 changed files with 0 additions and 94 deletions

View File

@ -1,6 +0,0 @@
*.swp
S_*
build
gmon.out
makefile
trick

View File

@ -1,3 +0,0 @@
#include "Baz.hh"
Baz::Baz() {}

View File

@ -1,11 +0,0 @@
// @trick_parse{everything}
// @trick_link_dependency{Baz.c++}
class Baz {
public:
int i;
Baz();
};

View File

@ -1,3 +0,0 @@
#include "Foo.hh"
Foo::Foo() {}

View File

@ -1,11 +0,0 @@
// @trick_parse{everything}
// @trick_link_dependency{Foo.cpp}
class Foo {
public:
int i;
Foo();
};

View File

@ -1,11 +0,0 @@
// @trick_parse{everything}
// @trick_link_dependency{src/Bar.cxx}
class Bar {
public:
int i;
Bar();
};

View File

@ -1,3 +0,0 @@
objects: TRICK_CXXFLAGS += -Wfloat-equal
cpp_objects: TRICK_CXXFLAGS += -Wmissing-include-dirs
cxx_objects: TRICK_CXXFLAGS += -Wuseless-cast

View File

@ -1,11 +0,0 @@
// @trick_parse{everything}
// @trick_link_dependency{potato/src/Flapjack.cpp}
class Flapjack {
public:
int i;
Flapjack();
};

View File

@ -1 +0,0 @@
objects: TRICK_CXXFLAGS += -Wextra

View File

@ -1,3 +0,0 @@
#include "potato/include/Flapjack.hh"
Flapjack::Flapjack() {}

View File

@ -1,3 +0,0 @@
#include "include/Bar.hh"
Bar::Bar() {}

View File

@ -1 +0,0 @@
cxx_objects: TRICK_CXX_FLAGS += -Wall

View File

@ -1,3 +0,0 @@
#include "stupid/Stupid.hh"
Stupid::Stupid() {}

View File

@ -1,11 +0,0 @@
// @trick_parse{everything}
// @trick_link_dependency{stupid/this_name_doesnt_even_matter.a}
class Stupid {
public:
int i;
Stupid();
};

View File

@ -1,10 +0,0 @@
// @trick_parse{everything}
class ReallyStupid {
public:
int i;
ReallyStupid();
};

View File

@ -1,3 +0,0 @@
#include "stupid/include/ReallyStupid.hh"
ReallyStupid::ReallyStupid() {}