first commit

This commit is contained in:
Eddy
2014-10-10 17:36:02 +04:00
commit 1a63497f04
62 changed files with 9055 additions and 0 deletions

9
Makefile Normal file
View File

@@ -0,0 +1,9 @@
CC = gcc
LDFLAGS =
DEFINES = -DSTANDALONE -DEBUG
CFLAGS = -Wall -Werror
all : fifo_lifo bidirectional_list B-trees simple_list
%: %.c
$(CC) $(LDFLAGS) $(CFLAGS) $(DEFINES) $< -o $@