view test/ellipsis/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  = ellipsis
OBJS = ellipsis.o main.o

TOP      = ../..
CFLAGS  += -I${TOP}/dyncall
LDFLAGS += -L${TOP}/dyncall
LDLIBS  += -ldyncall_s

all: ${APP}

.PHONY: all clean install

${APP}: ${OBJS} 
	${CXX} ${OBJS} ${LDFLAGS} ${LDLIBS} -o ${APP} 

clean:
	rm -f ${APP} ${OBJS}