Untitled
unknown
plain_text
4 months ago
245 B
3
Indexable
CC = gcc CFLAGS = -Wall -Wextra -std=c11 ifeq ($(OS),Windows_NT) DEL = del else DEL = rm -f endif all: run run: main.c speicherverwaltung.c $(CC) $(CFLAGS) -o run main.c speicherverwaltung.c ./run clean: $(DEL) run
Editor is loading...
Leave a Comment