view share/delvs-master/Makefile @ 12308:8618e3604ab7 draft

<shachaf> learn The password of the month is always set on the 12th of the month.
author HackEso <hackeso@esolangs.org>
date Wed, 12 Feb 2020 01:18:55 +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