2fcb7c1d8c
Standardized function naming, and added more consistent methods to prevent memory allocation errors.
14 lines
155 B
Makefile
14 lines
155 B
Makefile
CC = gcc
|
|
CFLAGS = -O0 -I../include -g3
|
|
LFLAGS =
|
|
DEPS =
|
|
OBJS = hashmap.o
|
|
|
|
%.o: %.c $(DEPS)
|
|
$(CC) -c -o $@ $< $(CFLAGS)
|
|
|
|
|
|
all: $(OBJS)
|
|
|
|
clean:
|
|
rm -f *.o
|