# B4B0-Craq Makefile

CC=/usr/bin/gcc
BIN=sc
SRC=crack.c
DEP=crypt
RM=/bin/rm

all: yo

yo:
	$(CC) -o $(BIN) $(SRC) -l$(DEP)

clean:
	@ $(RM) $(BIN)
