Initial revision

This commit is contained in:
Ben Gras
2005-04-21 14:53:53 +00:00
commit 9865aeaa79
2264 changed files with 411685 additions and 0 deletions
+28
View File
@@ -0,0 +1,28 @@
# Makefile for lib/tmrslib.
CFLAGS = -O -D_MINIX -D_POSIX_SOURCE
CC1 = $(CC) $(CFLAGS) -c
LIBTMRS = ../libtimers.a
all: $(LIBTMRS)
OBJECTS = \
$(LIBTMRS)(tmrs_set.o) \
$(LIBTMRS)(tmrs_clr.o) \
$(LIBTMRS)(tmrs_exp.o) \
$(LIBTMRS): $(OBJECTS)
aal cr $@ *.o
rm *.o
$(LIBTMRS)(tmrs_set.o): tmrs_set.c
$(CC1) tmrs_set.c
$(LIBTMRS)(tmrs_clr.o): tmrs_clr.c
$(CC1) tmrs_clr.c
$(LIBTMRS)(tmrs_exp.o): tmrs_exp.c
$(CC1) tmrs_exp.c