adding simple makefile to build door challenge

This commit is contained in:
anthraxx 2014-06-10 14:40:54 +02:00
parent 6128aef57a
commit e5931c0a41
2 changed files with 29 additions and 1 deletions

3
.gitignore vendored
View file

@ -1 +1,2 @@
*.out /challenge/*.o
/doorchallenge

27
Makefile Normal file
View file

@ -0,0 +1,27 @@
TARGET=doorchallenge
CC:=gcc
LD:=$(CC)
LDLIBS=
LDFLAGS=-Wl,-O1,--sort-common,--as-needed,-z,relro
CFLAGS=-Wall \
-Wextra \
-Winit-self \
-Wuninitialized \
-Wfloat-equal \
-Wint-to-pointer-cast \
-pedantic \
-O2 \
-fstack-protector-strong
all: $(TARGET)
$(TARGET): challenge/challenge.o
$(LD) $(LDFLAGS) -o $@ $^ $(LDLIBS)
challenge/%.o: challenge/%.c
$(CC) $(CFLAGS) -c $< -o $@
clean:
$(RM) -rf challenge/*.o $(TARGET)