correction d’une erreur dans le makefile

This commit is contained in:
COLIN Cyril 2019-11-13 12:55:45 +01:00
parent 8e0502d9e9
commit 3a6c3a9753
1 changed files with 4 additions and 3 deletions

View File

@ -7,7 +7,7 @@ CC := gcc -Wall -Wextra -Wpedantic -Werror -Wshadow=local -Iinclude -Isrc -g -st
CFLAGS := $(CFLAGS) -D_POSIX_C_SOURCE=200809L
OUT := $(notdir $(shell pwd))
OUT := test-ext-in test-ext-out test-iftun tunnel64d
SRC := $(wildcard src/*.c)
TEST := $(wildcard test/*.c)
@ -16,9 +16,9 @@ TEST_OBJS := $(patsubst test/%.c,build/test-%.o,$(TEST))
DEPS := $(wildcard build/*.d)
all: ext-in ext-out test-iftun tunnel64d
.PHONY: all
all: test-ext-in test-ext-out test-iftun tunnel64d
# $(OUT): $(OBJS)
$(OUT):
$(CC) $(LDFLAGS) -o $@ $^
@ -38,3 +38,4 @@ build/%.o: src/%.c
clean:
-rm -f build/*.o
-rm -f build/*.d
-rm -f $(OUT)