Added sources.

This commit is contained in:
2014-02-25 20:38:05 -04:30
parent 6dc0dc0bfc
commit 1bd8cb07ce
5 changed files with 505 additions and 0 deletions

16
Makefile Normal file
View File

@@ -0,0 +1,16 @@
LDLIBS = -lm
all: CFLAGS = -O3 -ansi -pedantic
all: ds
debug: CFLAGS = -g -ansi -pedantic
debug: ds
ds: main.o ds.o
main.o: main.c ds.h
ds.o: ds.c ds.h
clean:
$(RM) *.o ds