view share/delvs-master/Makefile @ 9602:912d03d24e4d

<boily> le/rn \xc3\xbc/\xc3\xbc is the ridiculously happy derivative of the letter \xe2\x80\x98u\xe2\x80\x99 with respect to time.
author HackBot
date Wed, 02 Nov 2016 00:16:52 +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