ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/JSOC/proj/myproj/apps/ReadMe
Revision: 1.3
Committed: Fri Jul 2 20:36:51 2010 UTC (13 years, 2 months ago) by arta
Branch: MAIN
CVS Tags: Ver_6-0, Ver_6-1, Ver_6-2, Ver_6-3, Ver_6-4, Ver_LATEST, NetDRMS_Ver_8-12, Ver_9-41, Ver_DRMSLATEST, Ver_9-5, Ver_9-4, Ver_9-3, Ver_9-2, Ver_9-1, Ver_9-0, NetDRMS_Ver_2-6, NetDRMS_Ver_2-7, NetDRMS_Ver_2-4, NetDRMS_Ver_2-5, NetDRMS_Ver_LATEST, NetDRMS_Ver_8-8, NetDRMS_Ver_8-10, NetDRMS_Ver_8-11, NetDRMS_Ver_8-4, NetDRMS_Ver_8-5, NetDRMS_Ver_8-6, NetDRMS_Ver_8-7, NetDRMS_Ver_8-0, NetDRMS_Ver_8-1, NetDRMS_Ver_8-2, NetDRMS_Ver_8-3, Ver_8-8, Ver_8-2, Ver_8-3, Ver_8-0, Ver_8-1, Ver_8-6, Ver_8-7, Ver_8-4, Ver_8-5, Ver_7-0, Ver_8-10, Ver_8-11, Ver_8-12, NetDRMS_Ver_6-4, NetDRMS_Ver_6-2, NetDRMS_Ver_6-3, NetDRMS_Ver_6-0, NetDRMS_Ver_6-1, Ver_5-14, Ver_5-13, Ver_5-12, Ver_5-11, Ver_5-10, NetDRMS_Ver_9-9, NetDRMS_Ver_9-41, NetDRMS_Ver_9-1, NetDRMS_Ver_9-0, NetDRMS_Ver_9-3, NetDRMS_Ver_9-2, NetDRMS_Ver_9-5, NetDRMS_Ver_9-4, Ver_7-1, NetDRMS_Ver_7-1, NetDRMS_Ver_7-0, HEAD
Changes since 1.2: +11 -14 lines
Log Message:
Restore previous versions - these versions were accidentally checked in

File Contents

# Content
1 This directory contains C-module code. There is one .c file per module. The Rules.mk
2 file tells 'make' how to build modules from these .c files. There is only one .c file
3 checked into CVS: mymod.c. It is to serve as a template for development. Please feel
4 free to edit mymod.c directly, but do not check-in changes to mymod.c to CVS.
5
6 By default, the Rules.mk file defines two template modules: a direct-connect module
7 (mymod) and a socket-connect module (mymod_sock). You can edit the file mymod.c to
8 alter the behavior of this template and to test out new code.
9
10 To build both modules:
11
12 cd $JSOCROOT
13 make mymod
14 make mymod_sock
15
16 To add a new module, edit Rules.mk in this directory, following the directions
17 in that file. Please notice the comments that start with NOTE. They describe
18 how to define a new module, and how to add library dependencies. 'Making' a newly
19 defined module is completely analogous to the 'making' the template module mymod.