view test/ellipsis/Makefile.embedded @ 368:f28b7f4f5749

- removed some pseudo-op on non-darwin platforms to make clang's integrated assembler happy
author Tassilo Philipp
date Wed, 05 Aug 2020 15:50:49 +0200
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}