# Copyright (c) 1993 Xerox Corporation. All rights reserved. # #-$Id$ # #-$Date$ # # # ANSI & POSIX emulation # # # VERY IMPORTANT: # NO target-config-dependent things go in in Makefile directly. # ALL target-config-dependent things go in config.mk, below. # # # # include config.mk here to define: # # CC - C compiler # CONFIG_CPPFLAGS # CONFIG_CFLAGS # # ASPP - assembler preprocessor (CPP) # CONFIG_ASPPFLAGS # # AS - assembler # CONFIG_ASFLAGS # # LDR - loader for reloadable modules # CONFIG_LDRFLAGS # # LD - loader # CONFIG_LDFLAGS # # INCLUDE -- search path for header files # include ../config/config.mk # # locations of object files # INSTALL_LIB = ../lib INSTALL_BIN = ../bin # # compilation flags, etc. # CPPFLAGS = $(INCLUDE) $(CONFIG_CPPFLAGS) \ -DPCR_NO_RENAME -DPCR_NO_HOSTDEP_ERR CFLAGS =-c $(CONFIG_CFLAGS) ASPPFLAGS = $(INCLUDE) $(CONFIG_ASPPFLAGS) \ -DPCR_NO_RENAME -DPCR_NO_HOSTDEP_ERR -DASM ASFLAGS = $(CONFIG_ASFLAGS) LDRFLAGS = $(CONFIG_LDRFLAGS) LDFLAGS = $(CONFIG_LDFLAGS) # # standard commands and default rules # INSTALL = cp -p .s.o: $(ASPP) $(ASPPFLAGS) $< > tmp.s ; $(AS) $(ASFLAGS) tmp.s -o $@ ; \ rm -f tmp.s .c.o: $(CC) $(CPPFLAGS) $(CFLAGS) -c $< -o $@ # # # # # BEGIN PACKAGE-SPECIFIC PART # # # # # # Default target # default: emu.o # # SOURCE FILE DEFINITION # # define CSRC SSRC MISCSRC HDEFS MISCDEFS. # # define MAKEDEP_MISCSRC = commands to make MISCSRC dependencies # (dependencies for .c and .s files are done automatically). # CSRC = PCR_EmuImpl.c PCR_EmuDataImpl.c \ PCR_EmuAassert.c PCR_EmuAmath.c \ PCR_EmuAstdioFile.c PCR_EmuAstdiom.c \ PCR_EmuAstdio0.c PCR_EmuAstdio4.c \ PCR_EmuAstdio5.c PCR_EmuAstdio6.c PCR_EmuAstdio7.c \ PCR_EmuAstdio8.c PCR_EmuAstdio9.c PCR_EmuAstdio10.c \ PCR_EmuAstdlib.c PCR_EmuAstring.c PCR_EmuAtime.c \ PCR_EmuPdirent.c PCR_EmuPfcntl.c PCR_EmuPgrp.c PCR_EmuPpwd.c \ PCR_EmuPsignal.c PCR_EmuPstat.c PCR_EmuPtermios.c PCR_EmuPtime.c \ PCR_EmuPtimes.c PCR_EmuPunistd.c PCR_EmuPutime.c \ PCR_EmuPutsname.c PCR_EmuPwait.c \ PCR_EmuHDieee.c PCR_EmuHDsocket.c SSRC = MISCSRC = SRC = $(CSRC) $(SSRC) $(MISCSRC) MAKEDEP_MISCSRC = HDEFS = PCR_EmuData.h PCR_EmuUtils.h PCR_EmuAstdioPvt.h \ PCR_EmuAstdioFile.h PCR_EmuAstdiom.h MISCDEFS = DEFS = $(HDEFS) $(MISCDEFS) # # # INSTALL DEFINITION # # define INSTALL_LIBFILES = targets to be copied into INSTALL_LIB # define INSTALL_BINFILES = targets to be copied into INSTALL_BIN # INSTALL_BINFILES = INSTALL_LIBFILES = emu.o # # package-specific definitions and rules # COBJ = PCR_EmuImpl.o PCR_EmuDataImpl.o \ PCR_EmuAassert.o PCR_EmuAmath.o \ PCR_EmuAstdioFile.o PCR_EmuAstdiom.o \ PCR_EmuAstdio0.o PCR_EmuAstdio4.o \ PCR_EmuAstdio5.o PCR_EmuAstdio6.o PCR_EmuAstdio7.o \ PCR_EmuAstdio8.o PCR_EmuAstdio9.o PCR_EmuAstdio10.o \ PCR_EmuAstdlib.o PCR_EmuAstring.o PCR_EmuAtime.o \ PCR_EmuPdirent.o PCR_EmuPfcntl.o PCR_EmuPgrp.o PCR_EmuPpwd.o \ PCR_EmuPsignal.o PCR_EmuPstat.o PCR_EmuPtermios.o PCR_EmuPtime.o \ PCR_EmuPtimes.o PCR_EmuPunistd.o PCR_EmuPutime.o \ PCR_EmuPutsname.o PCR_EmuPwait.o \ PCR_EmuHDieee.o PCR_EmuHDsocket.o SOBJ = MISCOBJ = emu.o: $(COBJ) $(SOBJ) $(LDR) $(LDRFLAGS) -o emu.o $(COBJ) $(SOBJ) # # # # # END PACKAGE-SPECIFIC PART # # # # # # # STANDARD TARGETS # # # # make install # install: $(INSTALL_LIBFILES) $(INSTALL_BINFILES) -if [ -n "$(INSTALL_LIBFILES)" ] ; then \ ( cd $(INSTALL_LIB) ; rm -f $(INSTALL_LIBFILES) ) ; \ $(INSTALL) $(INSTALL_LIBFILES) $(INSTALL_LIB) ; \ fi -if [ -n "$(INSTALL_BINFILES)" ] ; then \ ( cd $(INSTALL_BIN) ; rm -f $(INSTALL_BINFILES) ) ; \ $(INSTALL) $(INSTALL_BINFILES) $(INSTALL_BIN) ; \ fi # # make clean # clean: rm -f *.o *~ core a.out *.a *.BAK *.bak *.CKP logmsg.txt pcr # # make depend # # NOTE: the makefile must include "# DO NOT DELETE THIS LINE" # and at least one additional line of text after the last target. # "make depend" will replace everything following that line # by a newly-constructed list of dependencies. # # You can modify the behavior of this target by defining $(MAKEDEP_MISCSRC). # makedep: $(CSRC) $(SSRC) $(MISCSRC) rm -f makedep $(MAKEDEP_MISCSRC) -for x in $(CSRC) END ; \ do if [ $$x != END ]; then \ $(CPP) -M $(CPPFLAGS) $$x \ | sed -e '/:$$/d' >> makedep ; \ fi ; \ done -for x in $(SSRC) END ; \ do if [ $$x != END ]; then \ $(ASPP) -M $(ASPPFLAGS) $$x \ | sed -e '/:$$/d' \ | sed -e 's/[.]s[.]o :/.o :/g' >> makedep ; \ fi ; \ done depend: makedep echo '/^# DO NOT DELETE THIS LINE/,$$c' > eddep echo '# DO NOT DELETE THIS LINE' >> eddep echo '# Make depend depends on it' >> eddep echo '.' >> eddep echo '$$r makedep' >> eddep echo 'w' >> eddep rm -f Makefile.bak mv Makefile Makefile.bak cp Makefile.bak Makefile chmod u+w Makefile ex - Makefile < eddep -if [ ! -w Makefile.bak ] ; then chmod u-w Makefile ; fi rm -f eddep makedep # # # END OF HUMAN-EDITABLE PART # # # #-$Log$ # # # DO NOT DELETE THIS LINE # Make depend depends on it PCR_EmuImpl.o : PCR_EmuImpl.c ../config/PCR_StdDefs.h \ ../config/PCR_StdTypes.h ../config/PCR_Arch.h ../base/PCR_Base.h \ ../base/PCR_BaseArgs.h /import/gnu/lib/gcc-include/stdarg.h \ ../base/PCR_BaseRun.h PCR_EmuDataImpl.o : PCR_EmuDataImpl.c ../config/PCR_StdDefs.h \ ../config/PCR_StdTypes.h ../config/PCR_Arch.h ../base/PCR_Base.h \ ../base/PCR_BaseArgs.h /import/gnu/lib/gcc-include/stdarg.h ../th/PCR_Th.h \ ../sig/PCR_Sig.h ../config/PCR_OS.h ../sig/PCR_SigTypes.h \ ../th/PCR_ThTypes.h ../th/PCR_ThData.h ../th/PCR_ThDataGlue.h \ ../th/PCR_ThGlue.h ../mm/PCR_MM.h ../posix/stddef.h ../posix/host/stddef.h \ ../emu/PCR_EmuData.h ../posix/grp.h ../host/grp.h ../posix/sys/types.h \ ../posix/host/sys/types.h /usr/include/sys/stdtypes.h \ /usr/include/sys/sysmacros.h ../posix/pwd.h ../host/pwd.h ../posix/time.h \ ../host/time.h ../ansi/stdio.h ../posix/errno.h ../host/errno.h \ /usr/include/sys/errno.h PCR_EmuAassert.o : PCR_EmuAassert.c ../config/PCR_StdDefs.h \ ../config/PCR_StdTypes.h ../config/PCR_Arch.h ../io/PCR_IO.h \ ../th/PCR_ThTypes.h ../sig/PCR_SigTypes.h ../config/PCR_OS.h \ ../posix/sys/types.h ../posix/host/sys/types.h /usr/include/sys/stdtypes.h \ /usr/include/sys/sysmacros.h ../posix/dirent.h ../posix/host/dirent.h \ /usr/include/sys/dirent.h ../posix/sys/stat.h ../host/sys/stat.h \ ../posix/fcntl.h ../host/fcntl.h /usr/include/sys/fcntlcom.h \ ../posix/utime.h ../host/utime.h ../th/PCR_Th.h ../sig/PCR_Sig.h \ ../dbg/PCR_Dbg.h ../ansi/assert.h ../ansi/stdio.h \ /import/gnu/lib/gcc-include/stdarg.h ../posix/stddef.h \ ../posix/host/stddef.h PCR_EmuAmath.o : PCR_EmuAmath.c ../config/PCR_StdDefs.h \ ../config/PCR_StdTypes.h ../config/PCR_Arch.h ../config/PCR_OS.h \ ../ansi/math.h ../posix/host/math.h /usr/include/floatingpoint.h \ /usr/include/sys/ieeefp.h PCR_EmuAstdioFile.o : PCR_EmuAstdioFile.c ../config/PCR_StdDefs.h \ ../config/PCR_StdTypes.h ../config/PCR_Arch.h ../base/PCR_Base.h \ ../base/PCR_BaseArgs.h /import/gnu/lib/gcc-include/stdarg.h ../mm/PCR_MM.h \ ../posix/stddef.h ../posix/host/stddef.h ../th/PCR_Th.h ../sig/PCR_Sig.h \ ../config/PCR_OS.h ../sig/PCR_SigTypes.h ../th/PCR_ThTypes.h \ ../th/PCR_ThCrSec.h ../th/PCR_ThCrSecInlines.h ../th/PCR_ThCurr.h \ ../th/PCR_ThPvt.h ../th/PCR_ThData.h ../th/PCR_ThCtl.h \ ../th/PCR_ThCtlTypes.h ../posix/limits.h ../posix/host/limits.h \ ../posix/setjmp.h ../io/PCR_IO.h ../posix/sys/types.h \ ../posix/host/sys/types.h /usr/include/sys/stdtypes.h \ /usr/include/sys/sysmacros.h ../posix/dirent.h ../posix/host/dirent.h \ /usr/include/sys/dirent.h ../posix/sys/stat.h ../host/sys/stat.h \ ../posix/fcntl.h ../host/fcntl.h /usr/include/sys/fcntlcom.h \ ../posix/utime.h ../host/utime.h ../ansi/stdio.h ../emu/PCR_EmuAstdioPvt.h \ ../emu/PCR_EmuData.h ../posix/grp.h ../host/grp.h ../posix/pwd.h \ ../host/pwd.h ../posix/time.h ../host/time.h ../emu/PCR_EmuAstdioFile.h \ ../posix/errno.h ../host/errno.h /usr/include/sys/errno.h ../ansi/string.h PCR_EmuAstdiom.o : PCR_EmuAstdiom.c ../config/PCR_StdDefs.h \ ../config/PCR_StdTypes.h ../config/PCR_Arch.h ../base/PCR_Base.h \ ../base/PCR_BaseArgs.h /import/gnu/lib/gcc-include/stdarg.h ../mm/PCR_MM.h \ ../posix/stddef.h ../posix/host/stddef.h ../th/PCR_Th.h ../sig/PCR_Sig.h \ ../config/PCR_OS.h ../sig/PCR_SigTypes.h ../th/PCR_ThTypes.h \ ../ansi/stdio.h ../emu/PCR_EmuAstdioPvt.h ../emu/PCR_EmuData.h \ ../th/PCR_ThData.h ../posix/grp.h ../host/grp.h ../posix/sys/types.h \ ../posix/host/sys/types.h /usr/include/sys/stdtypes.h \ /usr/include/sys/sysmacros.h ../posix/pwd.h ../host/pwd.h ../posix/time.h \ ../host/time.h ../ansi/stdiom.h ../posix/signal.h ../emu/PCR_EmuAstdiom.h \ ../posix/errno.h ../host/errno.h /usr/include/sys/errno.h PCR_EmuAstdio0.o : PCR_EmuAstdio0.c ../config/PCR_StdDefs.h \ ../config/PCR_StdTypes.h ../config/PCR_Arch.h ../base/PCR_Base.h \ ../base/PCR_BaseArgs.h /import/gnu/lib/gcc-include/stdarg.h ../mm/PCR_MM.h \ ../posix/stddef.h ../posix/host/stddef.h ../th/PCR_Th.h ../sig/PCR_Sig.h \ ../config/PCR_OS.h ../sig/PCR_SigTypes.h ../th/PCR_ThTypes.h \ ../ansi/stdio.h ../emu/PCR_EmuAstdioPvt.h ../emu/PCR_EmuData.h \ ../th/PCR_ThData.h ../posix/grp.h ../host/grp.h ../posix/sys/types.h \ ../posix/host/sys/types.h /usr/include/sys/stdtypes.h \ /usr/include/sys/sysmacros.h ../posix/pwd.h ../host/pwd.h ../posix/time.h \ ../host/time.h ../posix/fcntl.h ../host/fcntl.h /usr/include/sys/fcntlcom.h \ ../posix/sys/stat.h ../host/sys/stat.h ../posix/errno.h ../host/errno.h \ /usr/include/sys/errno.h ../ansi/string.h PCR_EmuAstdio4.o : PCR_EmuAstdio4.c ../config/PCR_StdDefs.h \ ../config/PCR_StdTypes.h ../config/PCR_Arch.h ../th/PCR_Th.h \ ../sig/PCR_Sig.h ../config/PCR_OS.h ../sig/PCR_SigTypes.h \ ../th/PCR_ThTypes.h ../io/PCR_IO.h ../posix/sys/types.h \ ../posix/host/sys/types.h /usr/include/sys/stdtypes.h \ /usr/include/sys/sysmacros.h ../posix/dirent.h ../posix/host/dirent.h \ /usr/include/sys/dirent.h ../posix/sys/stat.h ../host/sys/stat.h \ ../posix/fcntl.h ../host/fcntl.h /usr/include/sys/fcntlcom.h \ ../posix/utime.h ../host/utime.h ../ansi/stdio.h \ /import/gnu/lib/gcc-include/stdarg.h ../posix/stddef.h \ ../posix/host/stddef.h ../emu/PCR_EmuData.h ../th/PCR_ThData.h \ ../posix/grp.h ../host/grp.h ../posix/pwd.h ../host/pwd.h ../posix/time.h \ ../host/time.h ../posix/errno.h ../host/errno.h /usr/include/sys/errno.h \ ../posix/unistd.h ../posix/host/unistd.h ../ansi/stdlib.h \ ../posix/host/stdlib.h PCR_EmuAstdio5.o : PCR_EmuAstdio5.c ../config/PCR_StdDefs.h \ ../config/PCR_StdTypes.h ../config/PCR_Arch.h ../th/PCR_Th.h \ ../sig/PCR_Sig.h ../config/PCR_OS.h ../sig/PCR_SigTypes.h \ ../th/PCR_ThTypes.h ../ansi/stdio.h /import/gnu/lib/gcc-include/stdarg.h \ ../posix/stddef.h ../posix/host/stddef.h ../emu/PCR_EmuAstdioPvt.h \ ../emu/PCR_EmuData.h ../th/PCR_ThData.h ../posix/grp.h ../host/grp.h \ ../posix/sys/types.h ../posix/host/sys/types.h /usr/include/sys/stdtypes.h \ /usr/include/sys/sysmacros.h ../posix/pwd.h ../host/pwd.h ../posix/time.h \ ../host/time.h ../posix/errno.h ../host/errno.h /usr/include/sys/errno.h \ ../ansi/string.h PCR_EmuAstdio6.o : PCR_EmuAstdio6.c ../config/PCR_StdDefs.h \ ../config/PCR_StdTypes.h ../config/PCR_Arch.h ../th/PCR_Th.h \ ../sig/PCR_Sig.h ../config/PCR_OS.h ../sig/PCR_SigTypes.h \ ../th/PCR_ThTypes.h ../ansi/stdio.h /import/gnu/lib/gcc-include/stdarg.h \ ../posix/stddef.h ../posix/host/stddef.h ../emu/PCR_EmuAstdioPvt.h \ ../emu/PCR_EmuData.h ../th/PCR_ThData.h ../posix/grp.h ../host/grp.h \ ../posix/sys/types.h ../posix/host/sys/types.h /usr/include/sys/stdtypes.h \ /usr/include/sys/sysmacros.h ../posix/pwd.h ../host/pwd.h ../posix/time.h \ ../host/time.h ../posix/errno.h ../host/errno.h /usr/include/sys/errno.h \ ../ansi/string.h ../ansi/ctype.h ../host/ctype.h ../ansi/stdlib.h \ ../posix/host/stdlib.h ../ansi/math.h ../posix/host/math.h \ /usr/include/floatingpoint.h /usr/include/sys/ieeefp.h PCR_EmuAstdio7.o : PCR_EmuAstdio7.c ../config/PCR_StdDefs.h \ ../config/PCR_StdTypes.h ../config/PCR_Arch.h ../th/PCR_Th.h \ ../sig/PCR_Sig.h ../config/PCR_OS.h ../sig/PCR_SigTypes.h \ ../th/PCR_ThTypes.h ../ansi/stdio.h /import/gnu/lib/gcc-include/stdarg.h \ ../posix/stddef.h ../posix/host/stddef.h ../emu/PCR_EmuAstdioPvt.h \ ../emu/PCR_EmuData.h ../th/PCR_ThData.h ../posix/grp.h ../host/grp.h \ ../posix/sys/types.h ../posix/host/sys/types.h /usr/include/sys/stdtypes.h \ /usr/include/sys/sysmacros.h ../posix/pwd.h ../host/pwd.h ../posix/time.h \ ../host/time.h ../posix/errno.h ../host/errno.h /usr/include/sys/errno.h \ ../ansi/string.h PCR_EmuAstdio8.o : PCR_EmuAstdio8.c ../config/PCR_StdDefs.h \ ../config/PCR_StdTypes.h ../config/PCR_Arch.h ../ansi/stdio.h \ /import/gnu/lib/gcc-include/stdarg.h ../posix/stddef.h \ ../posix/host/stddef.h ../emu/PCR_EmuAstdioPvt.h ../th/PCR_Th.h \ ../sig/PCR_Sig.h ../config/PCR_OS.h ../sig/PCR_SigTypes.h \ ../th/PCR_ThTypes.h ../emu/PCR_EmuData.h ../th/PCR_ThData.h ../posix/grp.h \ ../host/grp.h ../posix/sys/types.h ../posix/host/sys/types.h \ /usr/include/sys/stdtypes.h /usr/include/sys/sysmacros.h ../posix/pwd.h \ ../host/pwd.h ../posix/time.h ../host/time.h ../posix/errno.h \ ../host/errno.h /usr/include/sys/errno.h ../ansi/string.h PCR_EmuAstdio9.o : PCR_EmuAstdio9.c ../config/PCR_StdDefs.h \ ../config/PCR_StdTypes.h ../config/PCR_Arch.h ../th/PCR_Th.h \ ../sig/PCR_Sig.h ../config/PCR_OS.h ../sig/PCR_SigTypes.h \ ../th/PCR_ThTypes.h ../ansi/stdio.h /import/gnu/lib/gcc-include/stdarg.h \ ../posix/stddef.h ../posix/host/stddef.h ../emu/PCR_EmuAstdioPvt.h \ ../emu/PCR_EmuData.h ../th/PCR_ThData.h ../posix/grp.h ../host/grp.h \ ../posix/sys/types.h ../posix/host/sys/types.h /usr/include/sys/stdtypes.h \ /usr/include/sys/sysmacros.h ../posix/pwd.h ../host/pwd.h ../posix/time.h \ ../host/time.h ../posix/errno.h ../host/errno.h /usr/include/sys/errno.h PCR_EmuAstdio10.o : PCR_EmuAstdio10.c ../config/PCR_StdDefs.h \ ../config/PCR_StdTypes.h ../config/PCR_Arch.h ../ansi/stdio.h \ /import/gnu/lib/gcc-include/stdarg.h ../posix/stddef.h \ ../posix/host/stddef.h ../emu/PCR_EmuAstdioPvt.h ../th/PCR_Th.h \ ../sig/PCR_Sig.h ../config/PCR_OS.h ../sig/PCR_SigTypes.h \ ../th/PCR_ThTypes.h ../emu/PCR_EmuData.h ../th/PCR_ThData.h ../posix/grp.h \ ../host/grp.h ../posix/sys/types.h ../posix/host/sys/types.h \ /usr/include/sys/stdtypes.h /usr/include/sys/sysmacros.h ../posix/pwd.h \ ../host/pwd.h ../posix/time.h ../host/time.h ../posix/errno.h \ ../host/errno.h /usr/include/sys/errno.h PCR_EmuAstdlib.o : PCR_EmuAstdlib.c ../config/PCR_StdDefs.h \ ../config/PCR_StdTypes.h ../config/PCR_Arch.h ../base/PCR_Base.h \ ../base/PCR_BaseArgs.h /import/gnu/lib/gcc-include/stdarg.h \ ../emu/PCR_EmuData.h ../th/PCR_ThData.h ../sig/PCR_SigTypes.h \ ../config/PCR_OS.h ../posix/grp.h ../host/grp.h ../posix/sys/types.h \ ../posix/host/sys/types.h /usr/include/sys/stdtypes.h \ /usr/include/sys/sysmacros.h ../posix/pwd.h ../host/pwd.h ../posix/time.h \ ../host/time.h ../ansi/stdio.h ../posix/stddef.h ../posix/host/stddef.h \ ../th/PCR_ThCrSec.h ../th/PCR_ThCrSecInlines.h ../th/PCR_Th.h \ ../sig/PCR_Sig.h ../th/PCR_ThTypes.h ../th/PCR_ThCurr.h ../th/PCR_ThPvt.h \ ../th/PCR_ThCtl.h ../th/PCR_ThCtlTypes.h ../posix/limits.h \ ../posix/host/limits.h ../posix/setjmp.h ../mm/PCR_MM.h ../ansi/stdlib.h \ ../posix/host/stdlib.h ../ansi/ctype.h ../host/ctype.h ../ansi/string.h \ ../posix/errno.h ../host/errno.h /usr/include/sys/errno.h PCR_EmuAstring.o : PCR_EmuAstring.c ../config/PCR_StdDefs.h \ ../config/PCR_StdTypes.h ../config/PCR_Arch.h ../emu/PCR_EmuData.h \ ../th/PCR_ThData.h ../sig/PCR_SigTypes.h ../config/PCR_OS.h ../posix/grp.h \ ../host/grp.h ../posix/sys/types.h ../posix/host/sys/types.h \ /usr/include/sys/stdtypes.h /usr/include/sys/sysmacros.h ../posix/pwd.h \ ../host/pwd.h ../posix/time.h ../host/time.h ../ansi/stdio.h \ /import/gnu/lib/gcc-include/stdarg.h ../posix/stddef.h \ ../posix/host/stddef.h ../mm/PCR_MM.h ../th/PCR_ThCrSec.h \ ../th/PCR_ThCrSecInlines.h ../th/PCR_Th.h ../sig/PCR_Sig.h \ ../th/PCR_ThTypes.h ../th/PCR_ThCurr.h ../th/PCR_ThPvt.h ../th/PCR_ThCtl.h \ ../th/PCR_ThCtlTypes.h ../posix/limits.h ../posix/host/limits.h \ ../posix/setjmp.h ../posix/errno.h ../host/errno.h /usr/include/sys/errno.h \ ../ansi/string.h PCR_EmuAtime.o : PCR_EmuAtime.c ../config/PCR_StdDefs.h \ ../config/PCR_StdTypes.h ../config/PCR_Arch.h ../th/PCR_ThCrSec.h \ ../th/PCR_ThCrSecInlines.h ../th/PCR_Th.h ../sig/PCR_Sig.h \ ../config/PCR_OS.h ../sig/PCR_SigTypes.h ../th/PCR_ThTypes.h \ ../th/PCR_ThCurr.h ../th/PCR_ThPvt.h ../th/PCR_ThData.h ../th/PCR_ThCtl.h \ ../th/PCR_ThCtlTypes.h ../posix/limits.h ../posix/host/limits.h \ ../posix/setjmp.h ../vd/PCR_VD.h ../emu/PCR_EmuData.h ../posix/grp.h \ ../host/grp.h ../posix/sys/types.h ../posix/host/sys/types.h \ /usr/include/sys/stdtypes.h /usr/include/sys/sysmacros.h ../posix/pwd.h \ ../host/pwd.h ../posix/time.h ../host/time.h ../ansi/stdio.h \ /import/gnu/lib/gcc-include/stdarg.h ../posix/stddef.h \ ../posix/host/stddef.h ../mm/PCR_MM.h ../posix/errno.h ../host/errno.h \ /usr/include/sys/errno.h ../ansi/string.h ../ansi/time.h PCR_EmuPdirent.o : PCR_EmuPdirent.c ../config/PCR_StdDefs.h \ ../config/PCR_StdTypes.h ../config/PCR_Arch.h ../th/PCR_ThCrSec.h \ ../th/PCR_ThCrSecInlines.h ../th/PCR_Th.h ../sig/PCR_Sig.h \ ../config/PCR_OS.h ../sig/PCR_SigTypes.h ../th/PCR_ThTypes.h \ ../th/PCR_ThCurr.h ../th/PCR_ThPvt.h ../th/PCR_ThData.h ../th/PCR_ThCtl.h \ ../th/PCR_ThCtlTypes.h ../posix/limits.h ../posix/host/limits.h \ ../posix/setjmp.h ../posix/dirent.h ../posix/host/dirent.h \ ../posix/sys/types.h ../posix/host/sys/types.h /usr/include/sys/stdtypes.h \ /usr/include/sys/sysmacros.h /usr/include/sys/dirent.h PCR_EmuPfcntl.o : PCR_EmuPfcntl.c ../config/PCR_StdDefs.h \ ../config/PCR_StdTypes.h ../config/PCR_Arch.h ../th/PCR_ThCrSec.h \ ../th/PCR_ThCrSecInlines.h ../th/PCR_Th.h ../sig/PCR_Sig.h \ ../config/PCR_OS.h ../sig/PCR_SigTypes.h ../th/PCR_ThTypes.h \ ../th/PCR_ThCurr.h ../th/PCR_ThPvt.h ../th/PCR_ThData.h ../th/PCR_ThCtl.h \ ../th/PCR_ThCtlTypes.h ../posix/limits.h ../posix/host/limits.h \ ../posix/setjmp.h ../io/PCR_IO.h ../posix/sys/types.h \ ../posix/host/sys/types.h /usr/include/sys/stdtypes.h \ /usr/include/sys/sysmacros.h ../posix/dirent.h ../posix/host/dirent.h \ /usr/include/sys/dirent.h ../posix/sys/stat.h ../host/sys/stat.h \ ../posix/fcntl.h ../host/fcntl.h /usr/include/sys/fcntlcom.h \ ../posix/utime.h ../host/utime.h ../mm/PCR_MM.h ../posix/stddef.h \ ../posix/host/stddef.h ../posix/errno.h ../host/errno.h \ /usr/include/sys/errno.h ../posix/unistd.h ../posix/host/unistd.h \ /import/gnu/lib/gcc-include/stdarg.h PCR_EmuPgrp.o : PCR_EmuPgrp.c ../config/PCR_StdDefs.h \ ../config/PCR_StdTypes.h ../config/PCR_Arch.h ../th/PCR_ThCrSec.h \ ../th/PCR_ThCrSecInlines.h ../th/PCR_Th.h ../sig/PCR_Sig.h \ ../config/PCR_OS.h ../sig/PCR_SigTypes.h ../th/PCR_ThTypes.h \ ../th/PCR_ThCurr.h ../th/PCR_ThPvt.h ../th/PCR_ThData.h ../th/PCR_ThCtl.h \ ../th/PCR_ThCtlTypes.h ../posix/limits.h ../posix/host/limits.h \ ../posix/setjmp.h ../emu/PCR_EmuData.h ../posix/grp.h ../host/grp.h \ ../posix/sys/types.h ../posix/host/sys/types.h /usr/include/sys/stdtypes.h \ /usr/include/sys/sysmacros.h ../posix/pwd.h ../host/pwd.h ../posix/time.h \ ../host/time.h ../ansi/stdio.h /import/gnu/lib/gcc-include/stdarg.h \ ../posix/stddef.h ../posix/host/stddef.h ../mm/PCR_MM.h ../posix/errno.h \ ../host/errno.h /usr/include/sys/errno.h ../ansi/string.h PCR_EmuPpwd.o : PCR_EmuPpwd.c ../config/PCR_StdDefs.h \ ../config/PCR_StdTypes.h ../config/PCR_Arch.h ../th/PCR_ThCrSec.h \ ../th/PCR_ThCrSecInlines.h ../th/PCR_Th.h ../sig/PCR_Sig.h \ ../config/PCR_OS.h ../sig/PCR_SigTypes.h ../th/PCR_ThTypes.h \ ../th/PCR_ThCurr.h ../th/PCR_ThPvt.h ../th/PCR_ThData.h ../th/PCR_ThCtl.h \ ../th/PCR_ThCtlTypes.h ../posix/limits.h ../posix/host/limits.h \ ../posix/setjmp.h ../emu/PCR_EmuData.h ../posix/grp.h ../host/grp.h \ ../posix/sys/types.h ../posix/host/sys/types.h /usr/include/sys/stdtypes.h \ /usr/include/sys/sysmacros.h ../posix/pwd.h ../host/pwd.h ../posix/time.h \ ../host/time.h ../ansi/stdio.h /import/gnu/lib/gcc-include/stdarg.h \ ../posix/stddef.h ../posix/host/stddef.h ../mm/PCR_MM.h ../posix/errno.h \ ../host/errno.h /usr/include/sys/errno.h ../ansi/string.h PCR_EmuPsignal.o : PCR_EmuPsignal.c ../config/PCR_StdDefs.h \ ../config/PCR_StdTypes.h ../config/PCR_Arch.h ../sig/PCR_Sig.h \ ../config/PCR_OS.h ../sig/PCR_SigTypes.h ../th/PCR_Th.h ../th/PCR_ThTypes.h \ ../posix/sys/types.h ../posix/host/sys/types.h /usr/include/sys/stdtypes.h \ /usr/include/sys/sysmacros.h ../posix/signal.h ../posix/errno.h \ ../host/errno.h /usr/include/sys/errno.h PCR_EmuPstat.o : PCR_EmuPstat.c ../config/PCR_StdDefs.h \ ../config/PCR_StdTypes.h ../config/PCR_Arch.h ../emu/PCR_EmuUtils.h \ ../base/PCR_Base.h ../base/PCR_BaseArgs.h \ /import/gnu/lib/gcc-include/stdarg.h ../posix/errno.h ../host/errno.h \ /usr/include/sys/errno.h ../io/PCR_IO.h ../th/PCR_ThTypes.h \ ../sig/PCR_SigTypes.h ../config/PCR_OS.h ../posix/sys/types.h \ ../posix/host/sys/types.h /usr/include/sys/stdtypes.h \ /usr/include/sys/sysmacros.h ../posix/dirent.h ../posix/host/dirent.h \ /usr/include/sys/dirent.h ../posix/sys/stat.h ../host/sys/stat.h \ ../posix/fcntl.h ../host/fcntl.h /usr/include/sys/fcntlcom.h \ ../posix/utime.h ../host/utime.h PCR_EmuPtermios.o : PCR_EmuPtermios.c ../config/PCR_StdDefs.h \ ../config/PCR_StdTypes.h ../config/PCR_Arch.h ../base/PCR_Base.h \ ../base/PCR_BaseArgs.h /import/gnu/lib/gcc-include/stdarg.h \ ../emu/PCR_EmuUtils.h ../posix/errno.h ../host/errno.h \ /usr/include/sys/errno.h ../emu/PCR_EmuData.h ../th/PCR_ThData.h \ ../sig/PCR_SigTypes.h ../config/PCR_OS.h ../posix/grp.h ../host/grp.h \ ../posix/sys/types.h ../posix/host/sys/types.h /usr/include/sys/stdtypes.h \ /usr/include/sys/sysmacros.h ../posix/pwd.h ../host/pwd.h ../posix/time.h \ ../host/time.h ../ansi/stdio.h ../posix/stddef.h ../posix/host/stddef.h \ ../posix/termios.h ../posix/host/termios.h \ /import/gnu/lib/gcc-include/sys/ioccom.h /usr/include/sys/ttydev.h \ /import/gnu/lib/gcc-include/sys/ttycom.h PCR_EmuPtime.o : PCR_EmuPtime.c ../config/PCR_StdDefs.h \ ../config/PCR_StdTypes.h ../config/PCR_Arch.h ../th/PCR_ThCrSec.h \ ../th/PCR_ThCrSecInlines.h ../th/PCR_Th.h ../sig/PCR_Sig.h \ ../config/PCR_OS.h ../sig/PCR_SigTypes.h ../th/PCR_ThTypes.h \ ../th/PCR_ThCurr.h ../th/PCR_ThPvt.h ../th/PCR_ThData.h ../th/PCR_ThCtl.h \ ../th/PCR_ThCtlTypes.h ../posix/limits.h ../posix/host/limits.h \ ../posix/setjmp.h ../posix/errno.h ../host/errno.h /usr/include/sys/errno.h \ ../posix/time.h ../host/time.h /usr/include/sys/stdtypes.h PCR_EmuPtimes.o : PCR_EmuPtimes.c ../config/PCR_StdDefs.h \ ../config/PCR_StdTypes.h ../config/PCR_Arch.h ../th/PCR_ThCrSec.h \ ../th/PCR_ThCrSecInlines.h ../th/PCR_Th.h ../sig/PCR_Sig.h \ ../config/PCR_OS.h ../sig/PCR_SigTypes.h ../th/PCR_ThTypes.h \ ../th/PCR_ThCurr.h ../th/PCR_ThPvt.h ../th/PCR_ThData.h ../th/PCR_ThCtl.h \ ../th/PCR_ThCtlTypes.h ../posix/limits.h ../posix/host/limits.h \ ../posix/setjmp.h ../vd/PCR_VD.h ../posix/errno.h ../host/errno.h \ /usr/include/sys/errno.h ../posix/sys/times.h ../host/sys/times.h \ ../posix/sys/types.h ../posix/host/sys/types.h /usr/include/sys/stdtypes.h \ /usr/include/sys/sysmacros.h PCR_EmuPunistd.o : PCR_EmuPunistd.c ../config/PCR_StdDefs.h \ ../config/PCR_StdTypes.h ../config/PCR_Arch.h ../base/PCR_Base.h \ ../base/PCR_BaseArgs.h /import/gnu/lib/gcc-include/stdarg.h \ ../th/PCR_ThCrSec.h ../th/PCR_ThCrSecInlines.h ../th/PCR_Th.h \ ../sig/PCR_Sig.h ../config/PCR_OS.h ../sig/PCR_SigTypes.h \ ../th/PCR_ThTypes.h ../th/PCR_ThCurr.h ../th/PCR_ThPvt.h ../th/PCR_ThData.h \ ../th/PCR_ThCtl.h ../th/PCR_ThCtlTypes.h ../posix/limits.h \ ../posix/host/limits.h ../posix/setjmp.h ../emu/PCR_EmuUtils.h \ ../posix/errno.h ../host/errno.h /usr/include/sys/errno.h \ ../emu/PCR_EmuData.h ../posix/grp.h ../host/grp.h ../posix/sys/types.h \ ../posix/host/sys/types.h /usr/include/sys/stdtypes.h \ /usr/include/sys/sysmacros.h ../posix/pwd.h ../host/pwd.h ../posix/time.h \ ../host/time.h ../ansi/stdio.h ../posix/stddef.h ../posix/host/stddef.h \ ../mm/PCR_MM.h ../io/PCR_IO.h ../posix/dirent.h ../posix/host/dirent.h \ /usr/include/sys/dirent.h ../posix/sys/stat.h ../host/sys/stat.h \ ../posix/fcntl.h ../host/fcntl.h /usr/include/sys/fcntlcom.h \ ../posix/utime.h ../host/utime.h ../posix/unistd.h ../posix/host/unistd.h \ ../ansi/string.h ../posix/signal.h PCR_EmuPutime.o : PCR_EmuPutime.c ../config/PCR_StdDefs.h \ ../config/PCR_StdTypes.h ../config/PCR_Arch.h ../th/PCR_ThCrSec.h \ ../th/PCR_ThCrSecInlines.h ../th/PCR_Th.h ../sig/PCR_Sig.h \ ../config/PCR_OS.h ../sig/PCR_SigTypes.h ../th/PCR_ThTypes.h \ ../th/PCR_ThCurr.h ../th/PCR_ThPvt.h ../th/PCR_ThData.h ../th/PCR_ThCtl.h \ ../th/PCR_ThCtlTypes.h ../posix/limits.h ../posix/host/limits.h \ ../posix/setjmp.h ../vd/PCR_VD.h ../io/PCR_IO.h ../posix/sys/types.h \ ../posix/host/sys/types.h /usr/include/sys/stdtypes.h \ /usr/include/sys/sysmacros.h ../posix/dirent.h ../posix/host/dirent.h \ /usr/include/sys/dirent.h ../posix/sys/stat.h ../host/sys/stat.h \ ../posix/fcntl.h ../host/fcntl.h /usr/include/sys/fcntlcom.h \ ../posix/utime.h ../host/utime.h ../posix/errno.h ../host/errno.h \ /usr/include/sys/errno.h ../ansi/string.h PCR_EmuPutsname.o : PCR_EmuPutsname.c ../config/PCR_StdDefs.h \ ../config/PCR_StdTypes.h ../config/PCR_Arch.h ../th/PCR_ThCrSec.h \ ../th/PCR_ThCrSecInlines.h ../th/PCR_Th.h ../sig/PCR_Sig.h \ ../config/PCR_OS.h ../sig/PCR_SigTypes.h ../th/PCR_ThTypes.h \ ../th/PCR_ThCurr.h ../th/PCR_ThPvt.h ../th/PCR_ThData.h ../th/PCR_ThCtl.h \ ../th/PCR_ThCtlTypes.h ../posix/limits.h ../posix/host/limits.h \ ../posix/setjmp.h ../vd/PCR_VD.h ../posix/errno.h ../host/errno.h \ /usr/include/sys/errno.h ../ansi/string.h ../posix/sys/types.h \ ../posix/host/sys/types.h /usr/include/sys/stdtypes.h \ /usr/include/sys/sysmacros.h ../posix/sys/utsname.h ../host/sys/utsname.h PCR_EmuPwait.o : PCR_EmuPwait.c ../emu/PCR_EmuUtils.h \ ../config/PCR_StdDefs.h ../config/PCR_StdTypes.h ../config/PCR_Arch.h \ ../base/PCR_Base.h ../base/PCR_BaseArgs.h \ /import/gnu/lib/gcc-include/stdarg.h ../posix/errno.h ../host/errno.h \ /usr/include/sys/errno.h ../posix/sys/types.h ../posix/host/sys/types.h \ /usr/include/sys/stdtypes.h /usr/include/sys/sysmacros.h \ ../posix/sys/wait.h ../posix/host/sys/wait.h PCR_EmuHDieee.o : PCR_EmuHDieee.c ../config/PCR_StdDefs.h \ ../config/PCR_StdTypes.h ../config/PCR_Arch.h ../config/PCR_OS.h \ ../ansi/math.h ../posix/host/math.h /usr/include/floatingpoint.h \ /usr/include/sys/ieeefp.h PCR_EmuHDsocket.o : PCR_EmuHDsocket.c ../config/PCR_StdDefs.h \ ../config/PCR_StdTypes.h ../config/PCR_Arch.h ../base/PCR_Base.h \ ../base/PCR_BaseArgs.h /import/gnu/lib/gcc-include/stdarg.h \ ../th/PCR_ThCrSec.h ../th/PCR_ThCrSecInlines.h ../th/PCR_Th.h \ ../sig/PCR_Sig.h ../config/PCR_OS.h ../sig/PCR_SigTypes.h \ ../th/PCR_ThTypes.h ../th/PCR_ThCurr.h ../th/PCR_ThPvt.h ../th/PCR_ThData.h \ ../th/PCR_ThCtl.h ../th/PCR_ThCtlTypes.h ../posix/limits.h \ ../posix/host/limits.h ../posix/setjmp.h ../io/PCR_IO.h \ ../posix/sys/types.h ../posix/host/sys/types.h /usr/include/sys/stdtypes.h \ /usr/include/sys/sysmacros.h ../posix/dirent.h ../posix/host/dirent.h \ /usr/include/sys/dirent.h ../posix/sys/stat.h ../host/sys/stat.h \ ../posix/fcntl.h ../host/fcntl.h /usr/include/sys/fcntlcom.h \ ../posix/utime.h ../host/utime.h ../io/PCR_IOSocket.h ../host/sys/socket.h \ ../posix/host/sys/sockio.h /import/gnu/lib/gcc-include/sys/ioccom.h \ ../posix/host/netinet/in.h ../posix/host/netinet/tcp.h \ ../emu/PCR_EmuUtils.h ../posix/errno.h ../host/errno.h \ /usr/include/sys/errno.h ../emu/PCR_EmuData.h ../posix/grp.h ../host/grp.h \ ../posix/pwd.h ../host/pwd.h ../posix/time.h ../host/time.h ../ansi/stdio.h \ ../posix/stddef.h ../posix/host/stddef.h ../mm/PCR_MM.h \ ../posix/sys/socket.h