|
Revision 1653, 0.7 kB
(checked in by common, 6 months ago)
|
libemu
- split sctest in different files and move to tools/sctest/
|
- Property svn:keywords set to
id rev
|
| Line | |
|---|
| 1 |
AUTOMAKE_OPTIONS = foreign |
|---|
| 2 |
|
|---|
| 3 |
AM_CPPFLAGS = -I../include -I ../.. -Werror -Wall -g |
|---|
| 4 |
AM_LDFLAGS = -lemu -L../src |
|---|
| 5 |
|
|---|
| 6 |
bin_PROGRAMS = scprofiler |
|---|
| 7 |
noinst_PROGRAMS = testsuite cpurun instrtest instrtree hashtest memtest |
|---|
| 8 |
|
|---|
| 9 |
testsuite_LDADD = ../src/libemu.la |
|---|
| 10 |
|
|---|
| 11 |
testsuite_SOURCES = main.c |
|---|
| 12 |
|
|---|
| 13 |
cpurun_LDADD = ../src/libemu.la |
|---|
| 14 |
cpurun_SOURCES = cpu_run.c |
|---|
| 15 |
|
|---|
| 16 |
instrtest_LDADD = ../src/libemu.la |
|---|
| 17 |
instrtest_SOURCES = instrtest.c |
|---|
| 18 |
|
|---|
| 19 |
#instrtree_LDADD = ../src/libemu.la |
|---|
| 20 |
instrtree_SOURCES = instrtree.c |
|---|
| 21 |
|
|---|
| 22 |
hashtest_LDADD = ../src/libemu.la |
|---|
| 23 |
hashtest_SOURCES = hashtest.c |
|---|
| 24 |
|
|---|
| 25 |
memtest_LDADD = ../src/libemu.la |
|---|
| 26 |
memtest_SOURCES = memtest.c |
|---|
| 27 |
|
|---|
| 28 |
scprofiler_LDADD = ../src/libemu.la |
|---|
| 29 |
scprofiler_SOURCES = scprofiler.c |
|---|
| 30 |
|
|---|
| 31 |
EXTRA_DIST = emunids.c |
|---|