view test/suite3/Makefile.generic @ 642:575760fc57b7

Added tag r1.4 for changeset 2147d1c9dc8a
author Tassilo Philipp
date Tue, 06 Dec 2022 21:11:43 +0100
parents 22e4e3f06797
children ef356272a1c7
line wrap: on
line source

APP       = suite3
OBJS      = case.o main.o
SRCTOP    = ${VPATH}/../..
BLDTOP    = ../..
CXXFLAGS += -I${SRCTOP}/dyncall
LDLIBS   += -L${BLDTOP}/dyncall -ldyncall_s
.PHONY: all clean install
all: ${APP}
${APP}: ${OBJS} 
	${CXX} ${CXXFLAGS} ${LDFLAGS} ${OBJS} ${LDLIBS} -o ${APP}
clean:
	rm -f ${APP} ${OBJS}
install:
	mkdir -p ${PREFIX}/test
	cp ${APP} ${PREFIX}/test