debug of the useless makefile

This commit is contained in:
phyto
2019-01-27 13:15:33 +01:00
parent 0846b3e433
commit efa4604e3a
2 changed files with 8 additions and 8 deletions

View File

@@ -2,18 +2,18 @@
# must be run with gnu make
#
CC = gcc
CCOPT = -Wall -g
CC = gcc
CCOPT = -Wall -g
CLIB = core/libdd2m-core.a
all: essai fake-values
# ---------------------------------------------
essai: essai.c Makefile
gcc ${CCOPT} $< core/utils.o -o $@
essai: essai.c Makefile $(CLIB)
$(CC) ${CCOPT} $< $(CLIB) -o $@
fake-values: fake-values.c Makefile
gcc ${CCOPT} $< core/utils.o -o $@
fake-values: fake-values.c Makefile $(CLIB)
$(CC) ${CCOPT} $< $(CLIB) -o $@
# ---------------------------------------------