diff test/callback_suite/Makefile.embedded @ 505:049e04af13c8

test/callback_suite: - greatly simplified - refactored to look more like other test cases (especially call_suite{,_aggrs} for consistency/maintainablity/future code sharing
author Tassilo Philipp
date Sat, 09 Apr 2022 13:53:58 +0200
parents d8f0e6cecdab
children 71c884e610f0
line wrap: on
line diff
--- a/test/callback_suite/Makefile.embedded	Fri Apr 08 20:33:14 2022 +0200
+++ b/test/callback_suite/Makefile.embedded	Sat Apr 09 13:53:58 2022 +0200
@@ -1,5 +1,5 @@
 APP = callback_suite
-OBJS = env.o do_test.o main.o
+OBJS = globals.o cases.o main.o
 
 SRCTOP   = ../..
 BLDTOP   = ${SRCTOP}
@@ -14,6 +14,18 @@
 ${APP}: ${OBJS} 
 	${CC} ${OBJS} ${LDFLAGS} ${LDLIBS} -o ${APP} 
 
+config:
+	${LUA} make-signatures.lua >cases.txt
+	${LUA} mk-cases.lua <cases.txt >cases.h
+config-random:
+	echo "-- auto-generated file from template config-random.lua (created by make)" >config.lua
+	cat config-random.lua >>config.lua
+	${MAKE} config
+config-stress1:
+	echo "-- auto-generated file from template config-stress1.lua (created by make)" >config.lua
+	cat config-stress1.lua >>config.lua
+	${MAKE} config
+cases.o: cases.h
 clean:
 	rm -f ${APP} ${OBJS}