comparison Makefile @ 49:a8c7db56ccb0

core: backed out changeset 55869b5e4761 We don't need properties because we will generate them in the map.
author David Demelier <markand@malikania.fr>
date Fri, 17 Jan 2020 12:09:30 +0100
parents 55869b5e4761
children 402aa7dcffe1
comparison
equal deleted inserted replaced
48:55869b5e4761 49:a8c7db56ccb0
35 src/painter.c \ 35 src/painter.c \
36 src/sprite.c \ 36 src/sprite.c \
37 src/sys.c \ 37 src/sys.c \
38 src/texture.c \ 38 src/texture.c \
39 src/util.c \ 39 src/util.c \
40 src/property.c \
41 src/splashscreen.c \ 40 src/splashscreen.c \
42 src/walksprite.c \ 41 src/walksprite.c \
43 src/window.c 42 src/window.c
44 OBJS= ${SRCS:.c=.o} 43 OBJS= ${SRCS:.c=.o}
45 DEPS= ${SRCS:.c=.d} 44 DEPS= ${SRCS:.c=.d}
54 JANSSON_CFLAGS= `pkg-config --cflags jansson` 53 JANSSON_CFLAGS= `pkg-config --cflags jansson`
55 JANSSON_LDFLAGS=`pkg-config --libs jansson` 54 JANSSON_LDFLAGS=`pkg-config --libs jansson`
56 55
57 TESTS= tests/test-color.c \ 56 TESTS= tests/test-color.c \
58 tests/test-error.c \ 57 tests/test-error.c \
59 tests/test-map.c \ 58 tests/test-map.c
60 tests/test-property.c
61 TESTS_INCS= -I extern/libgreatest -I src ${SDL_CFLAGS} 59 TESTS_INCS= -I extern/libgreatest -I src ${SDL_CFLAGS}
62 TESTS_LIBS= ${LIB} ${SDL_LDFLAGS} ${LDFLAGS} 60 TESTS_LIBS= ${LIB} ${SDL_LDFLAGS} ${LDFLAGS}
63 TESTS_OBJS= ${TESTS:.c=} 61 TESTS_OBJS= ${TESTS:.c=}
64 TESTS_DEPS= ${TESTS:.c=.d} 62 TESTS_DEPS= ${TESTS:.c=.d}
65 63