1
0
Files
irix-657m-src/eoe/cmd/make/tests/mf_ar
2022-09-29 17:59:04 +03:00

13 lines
148 B
Plaintext

LIB=libTest.a
OBJS=$(LIB)(Fifteen_Chars.o) $(LIB)(Test.o)
LIB:: $(OBJS)
.c.a:
$(CC) -c $(CFLAGS) $*.c
ar cru $(LIB) $*.o
rm $*.o
all: $(LIB)