view test/suite3/Makefile.embedded @ 204:a74e2cd93348

- sparc64 endian detection on non-explicit platforms
author Tassilo Philipp
date Wed, 22 Mar 2017 12:02:23 +0100
parents 3e629dc19168
children
line wrap: on
line source

APP      = suite3
OBJS     = case.o main.o
TOP      = ../..
CFLAGS  += -I${TOP}/dyncall
LDFLAGS += -L${TOP}/dyncall
LDLIBS  += -ldyncall_s

.PHONY: all clean autogen

all: ${APP}
${APP}: ${OBJS} 
	${CXX} ${OBJS} ${LDFLAGS} ${LDLIBS} -o ${APP}
clean:
	rm -f ${APP} ${OBJS}
autogen:
	python mkcase.py 1>case.h 2>config.h