home *** CD-ROM | disk | FTP | other *** search
Makefile | 1995-10-06 | 493 b | 31 lines |
-
- OBJS = halt_library.o unmount.o
-
- all: libs:halt.library shutdown sdwarn
-
- shutdown: shutdown.c
- sc LINK shutdown.c
-
- sdwarn: sdwarn.c
- sc LINK sdwarn.c
-
- libs:halt.library: $(OBJS)
- slink with <<
- LIBPREFIX _LIB
- LIBFD halt.fd
- to halt.library
- FROM lib:libent.o lib:libinit.o $(OBJS)
- lib lib:sc.lib
- noicons
- SD
- libversion 2 librevision 0
- <
- slink from halt.library to libs:halt.library ND noicons
-
- clean:
- del \#?.o halt.library
-
- .c.o:
- sc libcode nostackcheck $<
-
-