From e11bf0ea6ce7582e6fcc6d7efee4400d4ec7c309 Mon Sep 17 00:00:00 2001 From: Chris Cromer Date: Fri, 23 Jul 2021 11:56:15 -0400 Subject: [PATCH] cleanup targets --- Makefile | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/Makefile b/Makefile index a01556d..5f3ed83 100644 --- a/Makefile +++ b/Makefile @@ -5,13 +5,13 @@ FILENAME=myshellin SRC=src/myshellin.c src/loop.c src/console_line.c src/array.c src/builtins.c src/launch.c src/utils.c src/redirect.c OBJ=$(SRC:.c=.o) -all: myshellin informe +all: shell informe -myshellin: $(OBJ) +shell: $(OBJ) $(CC) $(CFLAGS) -o $(FILENAME) $^ $(LDFLAGS) -informe: -# if pdflatex is installed create the informe +report: +# if pdflatex is installed create the report ifneq (, $(shell which pdflatex)) make -C doc mv doc/Informe.pdf Informe.pdf @@ -20,13 +20,13 @@ else ifneq (, $(shell which pdftex)) mv doc/Informe.pdf Informe.pdf endif -clean: cleanmyshellin cleaninforme +clean: cleanshell cleaninforme -cleanmyshellin: +cleanshell: rm -f src/*.o $(FILENAME) -cleaninforme: +cleanreport: make -C doc clean rm -f Informe.pdf -.PHONY: all myshellin informe clean cleanmyshellin cleaninforme +.PHONY: all shell report clean cleanshell cleanreport