view test/sign/Makefile.generic @ 524:1b1abed0ea32

- test/callback_suite_aggrs: small fix, removed missing param with default value
author Tassilo Philipp
date Wed, 13 Apr 2022 15:16:56 +0200
parents 3e629dc19168
children
line wrap: on
line source

APP     = sign
OBJS    = sign.o 
SRCTOP  = ${VPATH}/../..
BLDTOP  = ../..
CFLAGS += -I${SRCTOP}/dyncall
LDLIBS += -L${BLDTOP}/dyncall -ldyncall_s 
CFLAGS += -O3
.PHONY: all clean install 
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