Makefile
3.24 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
#!smake
#
# Makefile for os html man pages
#
PRDEPTH = $(ROOT)/PR
include $(PRDEPTH)/PRdefs
COMMONPREF = os
INDEX = os_INDEX.htm
MANPAGES = OS_CYCLES_TO_NSEC.htm OS_CYCLES_TO_USEC.htm \
OS_DCACHE_ROUNDP_ADDR.htm OS_DCACHE_ROUNDP_SIZE.htm \
OS_K0_TO_PHYSICAL.htm OS_K1_TO_PHYSICAL.htm OS_NSEC_TO_CYCLES.htm \
OS_PHYSICAL_TO_K0.htm OS_PHYSICAL_TO_K1.htm OS_USEC_TO_CYCLES.htm \
osAiGetLength.htm osAiGetStatus.htm osAiSetFrequency.htm \
osAiSetNextBuffer.htm osCartRomInit.htm osContGetQuery.htm \
osContGetReadData.htm osContInit.htm osContReset.htm \
osContSetCh.htm osContStartQuery.htm osContStartReadData.htm \
osCreateLog.htm osCreateMesgQueue.htm osCreatePiManager.htm \
osCreateRegion.htm osCreateScheduler.htm osCreateThread.htm \
osCreateViManager.htm osDestroyThread.htm osDpGetCounters.htm \
osDpGetStatus.htm osDpSetNextBuffer.htm osDpSetStatus.htm \
osDriveRomInit.htm osEPiRawStartDma.htm osEPiStartDma.htm \
osEPiLinkHandle.htm \
osEepromLongRead.htm osEepromLongWrite.htm osEepromProbe.htm \
osEepromRead.htm osEepromWrite.htm osFlushLog.htm osFree.htm \
osGetCause.htm osGetCompare.htm osGetConfig.htm osGetCount.htm \
osGetCurrFaultedThread.htm osGetFpcCsr.htm osGetIntMask.htm \
osGetNextFaultedThread.htm osGetRegionBufCount.htm \
osGetRegionBuffSize.htm osGetSR.htm osGetTLBASID.htm \
osGetThreadId.htm osGetThreadPri.htm osGetTime.htm osGlobals.htm \
osInitRdb.htm osInitialize.htm osInvalDCache.htm osInvallCache.htm \
osJamMesg.htm osLogEvent.htm osMalloc.htm osMapTLB.htm \
osMemSize.htm osMotorInit.htm osMotorStart.htm \
osPfsAllocateFile.htm osPfsChecker.htm osPfsDeleteFile.htm \
osPfsFileState.htm osPfsFindFile.htm osPfsFreeBlocks.htm \
osPfsGetLabel.htm osPfsInit.htm osPfsInitPak.htm osPfsIsPlug.htm \
osPfsNumFiles.htm osPfsReSizeFile.htm osPfsReadWriteFile.htm \
osPfsRepairId.htm osPfsSetLabel.htm osPiGetCmdQueue.htm \
osPiGetStatus.htm osPiRawReadIo.htm osPiRawStartDma.htm \
osPiRawWriteIo.htm osPiReadIo.htm osPiStartDma.htm osPiWriteIo.htm \
osProfile.htm osProfileFlush.htm osProfileInit.htm \
osProfileStart.htm osProfileStop.htm osReadHost.htm osRecvMesg.htm \
osResetType.htm osScAddClient.htm osScGetTaskQ.htm \
osScRemoveClient.htm osSendMesg.htm osSetCause.htm \
osSetCompare.htm osSetConfig.htm osSetErrorHandler.htm \
osSetEventMesg.htm osSetIntMask.htm osSetTLBASID.htm \
osSetThreadPri.htm osSetTime.htm osSetTimer.htm osSpTaskLoad.htm \
osSpTaskStart.htm osSpTaskStartGo.htm osSpTaskYield.htm \
osSpTaskYielded.htm osStartThread.htm osStopThread.htm \
osStopTimer.htm osTestHost.htm osTvType.htm osUnmapTLB.htm \
osUnmapTLBAII.htm osViBlack.htm osViFade.htm \
osViGetCurrentField.htm osViGetCurrentFramebuffer.htm \
osViGetCurrentLine.htm osViGetCurrentMode.htm \
osViGetNextFramebuffer.htm osViGetStatus.htm osViRepeatLine.htm \
osViSetEvent.htm osViSetMode.htm osViSetSpecialFeatures.htm \
osViSetXScale.htm osViSetYScale.htm osViSwapBuffer.htm \
osVirtualToPhysical.htm osWriteBackDCache.htm \
osWriteBackDCacheAll.htm osWriteHost.htm osYieldThread.htm
GFXIMAGES = bg.gif
FILES = $(INDEX) $(MANPAGES) $(GFXIMAGES)
default : $(_FORCE) $(GFXIMAGES)
install : default
install -m 444 -F /usr/src/PR/man_jp/os $(FILES)
$(GFXIMAGES):
uudecode $*.uu
clean clobber:
rm -f $(GFXIMAGES)
include $(COMMONRULES)