64f638db0d
Resolves: rhbz#1962773
15 lines
280 B
Makefile
15 lines
280 B
Makefile
SRCS = testsuite.c testsuite_main.c
|
|
CFLAG = -Wall -Wextra -Werror=implicit-function-declaration
|
|
CC = gcc
|
|
LIBS = -ltalloc
|
|
OBJS = talloc_testsuite
|
|
|
|
talloc_testsuite:${SRCS}
|
|
${CC} ${CFLAGS} -o $@ ${SRCS} ${LIBS}
|
|
|
|
run: talloc_testsuite
|
|
./talloc_testsuite
|
|
|
|
clean:
|
|
-rm -f *~ ${OBJS}
|