Mercurial > pub > dyncall > dyncall
view test/call_suite/Makefile.generic @ 448:987a2af078c8
test/Makefile.generic fix (copy/paste error)
author | Tassilo Philipp |
---|---|
date | Thu, 27 Jan 2022 11:39:35 +0100 |
parents | 2b708397bba1 |
children | ef356272a1c7 |
line wrap: on
line source
APP = call_suite OBJS = globals.o cases.o main.o SRCTOP = ${VPATH}/../.. BLDTOP = ../.. CFLAGS += -I${SRCTOP}/dyncall LDLIBS += -L${BLDTOP}/dyncall -ldyncall_s LUA = lua .PHONY: all clean install config config-random all: ${APP} ${APP}: ${OBJS} ${CC} ${CFLAGS} ${LDFLAGS} ${OBJS} ${LDLIBS} -o ${APP} clean: rm -f ${APP} ${OBJS} install: mkdir -p ${PREFIX}/test cp ${APP} ${PREFIX}/test config: ${LUA} mk-cases.lua <design.txt >cases.h config-random: ${LUA} rand-sig.lua >cases.txt ${LUA} mk-cases.lua <cases.txt >cases.h