myshellin/Makefile

30 lines
548 B
Makefile
Raw Normal View History

2021-06-19 17:54:33 -04:00
CC=clang
2021-06-19 19:13:53 -04:00
CFLAGS=-Wall -Isrc/include -DDEBUG -g -std=c17
LDFLAGS=
FILENAME=myshellin
SRC=src/myshellin.c src/loop.c src/user.c
2021-06-19 17:54:33 -04:00
OBJ=$(SRC:.c=.o)
2021-06-19 19:13:53 -04:00
all: myshellin
2021-06-19 17:54:33 -04:00
myshellin: $(OBJ)
2021-06-19 19:13:53 -04:00
$(CC) $(CFLAGS) -o $(FILENAME) $^ $(LDFLAGS)
2021-06-19 17:54:33 -04:00
informe:
# if pdflatex is installed create the informe
ifneq (, $(shell which pdflatex))
make -C doc
mv doc/Informe.pdf Informe.pdf
endif
2021-06-19 19:13:53 -04:00
clean: cleanmyshellin
2021-06-19 17:54:33 -04:00
cleanmyshellin:
rm -f src/*.o myshellin
cleaninforme:
make -C doc clean
rm -f Informe.pdf
.PHONY: all myshellin informe clean cleanmyshellin cleaninforme