view share/delvs-master/Makefile @ 11662:a5a4dfa2d77a draft

<oerjan> addquote <Ana-> Excuse me, I entered the channel without knowing what it was. I just wanted to talk to people <Ana-> \xf0\x9f\x98\xa5 <Phantom_Hoover> idk if you\'re likely to have much luck there <Phantom_Hoover> this channel is mostly full of computer programmers, not people
author HackEso <hackeso@esolangs.org>
date Wed, 05 Dec 2018 19:30:16 +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