Fixed the build system for the rangetest

This commit is contained in:
Neil Brown 2009-03-27 19:38:08 +00:00
parent 0ca5bb17d7
commit 55ba56cbae
2 changed files with 3 additions and 3 deletions

View File

@ -214,8 +214,8 @@ GenOrdAST_SOURCES = pregen/GenOrdAST.hs $(pregen_sources)
GenTagAST_SOURCES = pregen/GenTagAST.hs $(pregen_sources) GenTagAST_SOURCES = pregen/GenTagAST.hs $(pregen_sources)
rangetest_SOURCES = rangetest.c rangetest_SOURCES = rangetest.c
rangetest_CFLAGS = -Wall rangetest_CFLAGS = -Wall $(TOCK_CFLAGS)
rangetest_LDFLAGS = -lm rangetest_LDFLAGS = -lm $(TOCK_CLDFLAGS)
#The programs to actually build: #The programs to actually build:
bin_PROGRAMS = tock bin_PROGRAMS = tock

View File

@ -3,7 +3,7 @@ int g_stopped;
#define occam_stop(pos, nargs, format, args...) do { g_stopped = 1; } while (0) #define occam_stop(pos, nargs, format, args...) do { g_stopped = 1; } while (0)
#define occam_INT_size SIZEOF_INT #define occam_INT_size SIZEOF_INT
#include "support/tock_support.h" #include "support/tock_support_cif.h"
#define report_failure(msg, args...) { printf(msg, ##args); } #define report_failure(msg, args...) { printf(msg, ##args); }