From 5272a688ef7e6923ae5ee62ca150f75e47d16e57 Mon Sep 17 00:00:00 2001 From: Jonas Gunz Date: Mon, 25 May 2020 16:49:32 +0200 Subject: Update Makefile. directory structure + .gitignore --- Makefile | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 0374be2..69b0c04 100644 --- a/Makefile +++ b/Makefile @@ -2,36 +2,40 @@ CC = clang CFLAGS = -Wall LDFLAGS = -lm SOURCEDIR = src -OUTPUT = asciimap BUILDDIR = build +OBJDIR = $(BUILDDIR)/obj +OUTPUT = asciimap PREFIX = / FILE = 022.bmp SRCS = $(wildcard $(SOURCEDIR)/*.c) -OBJ = $(SRCS:.c=.o) +OBJT = $(SRCS:.c=.o) +OBJ = $(OBJT:$(SOURCEDIR)/%=$(OBJDIR)/%) .PHONY: build -build: $(OBJ) - @mkdir -p $(BUILDDIR) +build: dir $(OBJ) @echo [LINK] $(OBJ) @$(CC) $(CFLAGS) -o $(BUILDDIR)/$(OUTPUT) $(OBJ) $(LDFLAGS) +dir: + @mkdir -p $(OBJDIR) + @mkdir -p $(BUILDDIR) + debug: CFLAGS+= -g -D _DEBUG debug: build; gdb: debug gdb $(BUILDDIR)/$(OUTPUT) -%.o: %.c +$(OBJDIR)/%.o: $(SOURCEDIR)/%.c @echo [ CC ] $< @$(CC) $(CFLAGS) -c $< -o $@ all: clean build .PHONY: clean - clean: - rm -df $(OBJ) + rm -Rdf $(OBJDIR) rm -Rdf $(BUILDDIR) run: build -- cgit v1.2.3