Files
cpp-examples/check/Makefile
2013-05-01 20:30:22 +02:00

16 lines
134 B
Makefile

OBJ = main.o
LDADD = -lcheck
test: $(OBJ)
${CC} ${OBJ} -o test ${LDADD}
.c.o:
${CC} ${CFLAGS} -c $<
clean:
rm -f test