Functions from linked list moved to vqueue and vstack.
[C-Data-Structures.git] / Makefile
blobb5024d73b75a3931bf39e2b567d5e18fd5206532
1 CC = gcc
3 OBJS = lib_test.o lib_hash.o lib_ll.o lib_random.o lib_sort.o lib_vbtree.o
4 PROG = dstruct
5 INSTALLDIR = /usr/local/bin
7 dstruct: CFLAGS = -Wall -pedantic -std=c99 -ansi -DDEBUG -g -O0 -ggdb3 -Wextra -Wno-missing-field-initializers
9 dstruct: $(OBJS)
10 $(CC) $(CFLAGS) $(LIBS) -o $(PROG) $(OBJS)
12 clean:
13 rm -f $(PROG) $(OBJS)
15 all: dstruct