view test/plain/Makefile.embedded @ 236:9bca9ca46db9

- dyncallback 'long long' arg fix for Darwin/PPC
author Tassilo Philipp
date Tue, 02 May 2017 02:52:56 +0200
parents 3e629dc19168
children 71c884e610f0
line wrap: on
line source

APP = plain
OBJS = test_main.o test_structs.o

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

all: ${APP}

.PHONY: all clean install

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

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