comparison test/suite_floats/Makefile.embedded @ 0:3e629dc19168

initial from svn dyncall-1745
author Daniel Adler
date Thu, 19 Mar 2015 22:24:28 +0100
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:3e629dc19168
1 APP = suite_floats
2 OBJS = case.o main.o
3 TOP = ../..
4 CFLAGS += -I${TOP}/dyncall
5 LDFLAGS += -L${TOP}/dyncall
6 LDLIBS += -ldyncall_s
7
8 all: ${APP}
9
10
11 .PHONY: all clean
12
13 ${APP}: ${OBJS}
14 ${CXX} ${OBJS} ${LDFLAGS} ${LDLIBS} -o ${APP}
15
16 clean:
17 rm -f ${APP} ${OBJS}
18