comparison test/plain_c++/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 = plain_c++
2 OBJS = test_main.o
3 TOP = ../..
4 CFLAGS += -I${TOP}/dyncall
5 LDFLAGS += -L${TOP}/dyncall
6 LDLIBS += -ldyncall_s
7
8 all: ${APP}
9
10 .PHONY: all clean install
11
12 ${APP}: ${OBJS}
13 ${CXX} ${OBJS} ${LDFLAGS} ${LDLIBS} -o ${APP}
14
15 clean:
16 rm -f ${APP} ${OBJS}
17