Anthony Debucquoy
63332c6221
This is a project that aim to visualize any kind of file by seeing how frequent are association of two characters in a file. This idea comes from conti & corte (I have to find the source then I'll put it in the readme...)
19 lines
239 B
Makefile
19 lines
239 B
Makefile
.PHONY: clean, mrproper
|
|
CC = gcc
|
|
CFLAGS = -g -Wall -Wextra -pedantic
|
|
|
|
all: fisualizer
|
|
|
|
%.o: %.c
|
|
$(CC) $(CFLAGS) -c -o $@ $<
|
|
|
|
fisualizer: fisualizer.o
|
|
$(CC) $(CFLAGS) -o $@ $+
|
|
|
|
clean:
|
|
rm -f *.o core.*
|
|
|
|
mrproper: clean
|
|
rm -f fisualizer
|
|
|