all repos — cryptopals-challenges @ 30411cf8449b0bcd6afbace9b8359b8d14bf01fb

cryptopals-challenges

set1/Makefile

 1
 2
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
 13
 14
CC = gcc
CFLAGS = -Wall -Wpedantic -Wextra -std=c99 -g
RM = rm

all: base64

base64: base64.c
	$(CC) -o $@ $^

clean:
	$(RM) base64
	$(RM) *.o