Untitled
Anonymous
plain_text
04/10/2025 9:24 AM
388 B
12
Indexable
# Compilador e flags
CC = gcc
CFLAGS = -Wall -Wextra -pedantic -02
# Default target
all: main ptojpt1.zip
main:
$(CC) $(CFLAGS) -o main $(MAIN)
@pmccabe $(SRCS)
teste:
$(CC) $(CFLAGS) -g -o teste $(TEST) -lcunit
clean:
rm -f main teste *.o*,zip
rebuild:
clean allEditor is loading...
Leave a Comment