Untitled
unknown
plain_text
16 days ago
289 B
3
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 all
Editor is loading...
Leave a Comment