Untitled

Anonymous
plain_text
12/18/2024 5:31 PM
328 B
15
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