view share/delvs-master/Makefile @ 12501:7383c3977132 draft default tip

<wib_jonas> learn The password of the month is multisensory, interactive complexity of physical life experience.
author HackEso <hackeso@esolangs.org>
date Thu, 27 Jun 2024 16:57:10 +0000
parents 38a5b4d8a98e
children
line wrap: on
line source

CC=gcc
CFLAGS=-Wall -std=c11 -Werror
LDFLAGS=
SOURCES=main.c
OBJECTS=$(SOURCES:.c=.o)

all: objects
	mv main.o delvs

objects:
	$(CC) $(CFLAGS) $(SOURCES) -o $(OBJECTS)

clean:
	rm -f delvs bfi *.o

vanilla:
	$(CC) $(CFLAGS) bf.c -o bfi