TheAlgorithms-C/data_structures/hash_set/Makefile

13 lines
156 B
Makefile
Raw Normal View History

2020-05-09 19:34:25 +03:00
CC = gcc
CFLAGS = -g -Wall
all: main
main: main.o hash_set.o
$(CC) $(CFLAGS) $^ -o $@
hash_set.o: hash_set.c
$(CC) $(CFLAGS) -c $^
clean:
rm *.o main