debug of the useless makefile
This commit is contained in:
parent
0846b3e433
commit
efa4604e3a
10
Makefile
10
Makefile
@ -3,17 +3,17 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
CC = gcc
|
CC = gcc
|
||||||
|
|
||||||
CCOPT = -Wall -g
|
CCOPT = -Wall -g
|
||||||
|
CLIB = core/libdd2m-core.a
|
||||||
|
|
||||||
all: essai fake-values
|
all: essai fake-values
|
||||||
|
|
||||||
# ---------------------------------------------
|
# ---------------------------------------------
|
||||||
|
|
||||||
essai: essai.c Makefile
|
essai: essai.c Makefile $(CLIB)
|
||||||
gcc ${CCOPT} $< core/utils.o -o $@
|
$(CC) ${CCOPT} $< $(CLIB) -o $@
|
||||||
|
|
||||||
fake-values: fake-values.c Makefile
|
fake-values: fake-values.c Makefile $(CLIB)
|
||||||
gcc ${CCOPT} $< core/utils.o -o $@
|
$(CC) ${CCOPT} $< $(CLIB) -o $@
|
||||||
|
|
||||||
# ---------------------------------------------
|
# ---------------------------------------------
|
||||||
|
@ -32,7 +32,7 @@ if (verbosity > 1) {
|
|||||||
fprintf(stderr, "fake values - %s %s\n", __DATE__, __TIME__);
|
fprintf(stderr, "fake values - %s %s\n", __DATE__, __TIME__);
|
||||||
}
|
}
|
||||||
|
|
||||||
printf("%.3f %d\n", dtime(), random1000(type));
|
printf("%.3f %4d\n", dtime(), random1000(type));
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user