FileRecovery-nyufile / src / main / Makefile
Makefile
Raw
CC=gcc
CFLAGS=-g -pedantic -std=gnu17 -Wall -Werror -Wextra
LDFLAGS=-l crypto

.PHONY: all
all: nyufile
nyufile: nyufile.o fat32.o utils.o

nyufile.o: nyufile.c
fat32.o: fat32.c
utils.o: utils.c

.PHONY: clean
clean:
	rm -f *.o nyufile