Compare commits

...

2 Commits

Author SHA1 Message Date
COLIN Cyril 3a6c3a9753 correction d’une erreur dans le makefile 2019-11-13 13:04:18 +01:00
COLIN Cyril 8e0502d9e9 suppression des binaires du dépo (oups) 2019-11-13 12:55:02 +01:00
5 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)

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.