view test/resolve_self/Makefile.embedded @ 227:318a9ffc2b85

- resolve_self test cleanups
author Tassilo Philipp
date Sun, 16 Apr 2017 13:29:36 +0200
parents 3e629dc19168
children 2536413edfd8
line wrap: on
line source

APP = resolve_self
OBJS = main.o

TOP      = ../..
CFLAGS  += -I${TOP}/dynload
LDFLAGS += -L${TOP}/dynload
LDLIBS  += -ldynload_s

all: ${APP}

.PHONY: all clean install

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

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