Tous les téléchargements de Scfato47
|
|
Bonjour a tous,
j'ai unpetit probléme, mon compilateur n'arrive pas à trouver mon Makefile ! voici mon makefile : [code] Q = @ CFLAGS +=-Wall -Werror -pedantic -std=gnu99 $(EXTRA_CFLAGS) DEPENDFILE = .depend LIB_SRC = mt_arr_list.c mt_impl.c mt_crypto.c sha224-256.c PRG_SRC = mt_test.c SRC = $(LIB_SRC) $(PRG_SRC) LIB_OBJS = $(LIB_SRC:%.c=%.o) PRG_OBJS = $(PRG_SRC:%.c=%.o) OBJS = $(LIB_OBJS) $(PRG_OBJS) LIB = libMerkleTree.a BIN = mt-test all: silent debug: LDFLAGS +=-ggdb debug: CFLAGS +=-ggdb debug: dep $(BIN) coverage: LDFLAGS +=-ggdb -coverage coverage: CFLAGS +=-ggdb -fprofile-arcs -ftest-coverag ... Voir la suite |
|
|