From 65966ded0cc15c5966c6568cf0ff2f2bbe1fc29a Mon Sep 17 00:00:00 2001 From: Stefan Zabka Date: Sun, 24 May 2020 12:09:46 +0200 Subject: Big remodelling --- shell/Makefile | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 shell/Makefile (limited to 'shell/Makefile') diff --git a/shell/Makefile b/shell/Makefile new file mode 100644 index 0000000..5d1b360 --- /dev/null +++ b/shell/Makefile @@ -0,0 +1,32 @@ +#!/usr/bin/make +.SUFFIXES: +.PHONY: all run pack clean +TAR = shell prog +SRC = $(wildcard *.c) +OBJ = $(SRC:%.c=%.o) +PCK = lab-2.zip + +CFLAGS = -std=gnu11 -c -g -Os -Wall -Werror -MMD -MP -D=_GNU_SOURCE + +DEP = $(OBJ:%.o=%.d) +-include $(DEP) + +%.o: %.c + $(CC) $(CFLAGS) $< -o $@ + +all: $(TAR) + +prog: prog.o + $(CC) -o $@ $^ + +shell: $(filter-out prog.o,$(OBJ)) + $(CC) -o $@ $^ + +run: all + ./shell + +pack: + zip $(PCK) $(SRC) $(wildcard *.h) Makefile + +clean: + $(RM) $(RMFILES) $(TAR) $(OBJ) $(DEP) $(PCK) -- cgit v1.2.3-54-g00ecf