minix/lib/syslib/Makefile
2005-07-01 18:01:33 +00:00

155 lines
3.1 KiB
Makefile
Executable file

# Makefile for lib/syslib.
CFLAGS = -O -D_MINIX -D_POSIX_SOURCE
CC1 = $(CC) $(CFLAGS) -c
LIBSYS = ../libsys.a
all: $(LIBSYS)
OBJECTS = \
$(LIBSYS)(sys_times.o) \
$(LIBSYS)(sys_getuptm.o) \
$(LIBSYS)(sys_abort.o) \
$(LIBSYS)(sys_exec.o) \
$(LIBSYS)(sys_fork.o) \
$(LIBSYS)(sys_kill.o) \
$(LIBSYS)(sys_newmap.o) \
$(LIBSYS)(sys_sigsend.o) \
$(LIBSYS)(sys_sigret.o) \
$(LIBSYS)(sys_endsig.o) \
$(LIBSYS)(sys_getsig.o) \
$(LIBSYS)(sys_svrctl.o) \
$(LIBSYS)(sys_trace.o) \
$(LIBSYS)(sys_xit.o) \
$(LIBSYS)(sys_sdevio.o) \
$(LIBSYS)(sys_getinfo.o) \
$(LIBSYS)(sys_irqctl.o) \
$(LIBSYS)(sys_eniop.o) \
$(LIBSYS)(sys_segctl.o) \
$(LIBSYS)(sys_setpriority.o) \
$(LIBSYS)(sys_umap.o) \
$(LIBSYS)(sys_physcp.o) \
$(LIBSYS)(sys_vircp.o) \
$(LIBSYS)(sys_in.o) \
$(LIBSYS)(sys_out.o) \
$(LIBSYS)(sys_vinb.o) \
$(LIBSYS)(sys_vinw.o) \
$(LIBSYS)(sys_vinl.o) \
$(LIBSYS)(sys_voutb.o) \
$(LIBSYS)(sys_voutw.o) \
$(LIBSYS)(sys_voutl.o) \
$(LIBSYS)(sys_signalrm.o) \
$(LIBSYS)(sys_syncalrm.o) \
$(LIBSYS)(sys_physzero.o) \
$(LIBSYS)(taskcall.o) \
$(LIBSYS): $(OBJECTS)
aal cr $@ *.o
rm *.o
$(LIBSYS)(sys_times.o): sys_times.c
$(CC1) sys_times.c
$(LIBSYS)(sys_getuptm.o): sys_getuptm.c
$(CC1) sys_getuptm.c
$(LIBSYS)(sys_abort.o): sys_abort.c
$(CC1) sys_abort.c
$(LIBSYS)(sys_exec.o): sys_exec.c
$(CC1) sys_exec.c
$(LIBSYS)(sys_fork.o): sys_fork.c
$(CC1) sys_fork.c
$(LIBSYS)(sys_kill.o): sys_kill.c
$(CC1) sys_kill.c
$(LIBSYS)(sys_newmap.o): sys_newmap.c
$(CC1) sys_newmap.c
$(LIBSYS)(sys_svrctl.o): sys_svrctl.c
$(CC1) sys_svrctl.c
$(LIBSYS)(sys_trace.o): sys_trace.c
$(CC1) sys_trace.c
$(LIBSYS)(sys_xit.o): sys_xit.c
$(CC1) sys_xit.c
$(LIBSYS)(sys_sdevio.o): sys_sdevio.c
$(CC1) sys_sdevio.c
$(LIBSYS)(sys_getinfo.o): sys_getinfo.c
$(CC1) sys_getinfo.c
$(LIBSYS)(sys_irqctl.o): sys_irqctl.c
$(CC1) sys_irqctl.c
$(LIBSYS)(sys_eniop.o): sys_eniop.c
$(CC1) sys_eniop.c
$(LIBSYS)(sys_setpriority.o): sys_setpriority.c
$(CC1) sys_setpriority.c
$(LIBSYS)(sys_segctl.o): sys_segctl.c
$(CC1) sys_segctl.c
$(LIBSYS)(sys_umap.o): sys_umap.c
$(CC1) sys_umap.c
$(LIBSYS)(sys_getsig.o): sys_getsig.c
$(CC1) sys_getsig.c
$(LIBSYS)(sys_endsig.o): sys_endsig.c
$(CC1) sys_endsig.c
$(LIBSYS)(sys_sigsend.o): sys_sigsend.c
$(CC1) sys_sigsend.c
$(LIBSYS)(sys_sigret.o): sys_sigret.c
$(CC1) sys_sigret.c
$(LIBSYS)(sys_physcp.o): sys_physcp.c
$(CC1) sys_physcp.c
$(LIBSYS)(sys_vircp.o): sys_vircp.c
$(CC1) sys_vircp.c
$(LIBSYS)(sys_out.o): sys_out.c
$(CC1) sys_out.c
$(LIBSYS)(sys_in.o): sys_in.c
$(CC1) sys_in.c
$(LIBSYS)(sys_voutb.o): sys_voutb.c
$(CC1) sys_voutb.c
$(LIBSYS)(sys_voutw.o): sys_voutw.c
$(CC1) sys_voutw.c
$(LIBSYS)(sys_voutl.o): sys_voutl.c
$(CC1) sys_voutl.c
$(LIBSYS)(sys_vinb.o): sys_vinb.c
$(CC1) sys_vinb.c
$(LIBSYS)(sys_vinw.o): sys_vinw.c
$(CC1) sys_vinw.c
$(LIBSYS)(sys_vinl.o): sys_vinl.c
$(CC1) sys_vinl.c
$(LIBSYS)(sys_signalrm.o): sys_signalrm.c
$(CC1) sys_signalrm.c
$(LIBSYS)(sys_syncalrm.o): sys_syncalrm.c
$(CC1) sys_syncalrm.c
$(LIBSYS)(sys_physzero.o): sys_physcp.c
$(CC1) sys_physzero.c
$(LIBSYS)(taskcall.o): taskcall.c
$(CC1) taskcall.c