SCM Repository
View of /sml/trunk/src/runtime/memory/makefile
Parent Directory
|
Revision Log
Revision 2 -
(download)
(annotate)
Sat Oct 4 23:33:09 1997 UTC (23 years, 6 months ago) by monnier
File size: 665 byte(s)
Sat Oct 4 23:33:09 1997 UTC (23 years, 6 months ago) by monnier
File size: 665 byte(s)
Initial revision
# # The makefile for the memory management library. This get recursively # invoked with the OBJS variable set to the appropriate value. # MAKE = make AR = ar ARFLAGS = rcv RANLIB = ranlib VERSION = v-dummy LIB = libmem.a MMAP_OBJS = mem-mmap.o MACH_OBJS = mem-mach.o BRK_OBJS = mem-brk.o malloc.o $(LIB) : $(VERSION) $(OBJS) $(AR) $(ARFLAGS) $(LIB) $(OBJS) $(RANLIB) $(LIB) $(VERSION) : ($(MAKE) MAKE="$(MAKE)" clean) echo "$(VERSION)" > $(VERSION) mem-mmap.o mem-mach.o mem-brk.o: mem-common.ins .o: ../include/ml-base.h ../include/ml-unixdep.h ../include/bibop.h .c.o: $(CC) $(CFLAGS) $(DEFS) $(INCLUDES) -c $< clean : rm -f v-* *.o $(LIB)
root@smlnj-gforge.cs.uchicago.edu | ViewVC Help |
Powered by ViewVC 1.0.0 |