Untitled
unknown
plain_text
a year ago
245 B
6
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) runEditor is loading...
Leave a Comment