Untitled
unknown
plain_text
7 months ago
289 B
4
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