minix/lib/liby/Makefile
2005-04-21 14:53:53 +00:00

22 lines
331 B
Makefile
Executable file

# Makefile for lib/liby.
CFLAGS = -O -D_MINIX -D_POSIX_SOURCE -wo
CC1 = $(CC) $(CFLAGS) -c
LIBRARY = ../liby.a
all: $(LIBRARY)
OBJECTS = \
$(LIBRARY)(main.o) \
$(LIBRARY)(yyerror.o) \
$(LIBRARY): $(OBJECTS)
aal cr $@ *.o
rm *.o
$(LIBRARY)(main.o): main.c
$(CC1) main.c
$(LIBRARY)(yyerror.o): yyerror.c
$(CC1) yyerror.c