SO2019/makefile

35 lines
463 B
Makefile

# Usage:
# make # compile all binary
# make clean # remove ALL binaries and objects
.PHONY = all clean
# compiler to use
CC = gcc
LINKERFLAG = -lm
SRCS := $(wildcard *.c)
BINS := $(SRCS:%.c=%)
all: ${BINS}
cp ${BINS} ~/TP
%: %.o
@echo "Checking.."
${CC} ${LINKERFLAG} $< -o $@
%.o: %.c
@echo "Creating object.."
${CC} -c $<
cliente: client.o
gestor: server.o
verificador: verificador.o
clean:
@echo "Cleaning up..."
rm -rvf *.o ${BINS}