Changed main.c to common.c
authorDavid Schleef <ds@schleef.org>
Sat, 14 Jul 2001 00:53:30 +0000 (00:53 +0000)
committerDavid Schleef <ds@schleef.org>
Sat, 14 Jul 2001 00:53:30 +0000 (00:53 +0000)
demo/Makefile
demo/README
demo/cmd.c
demo/common.c [moved from demo/main.c with 100% similarity]

index 0c5f2095d6cb40b8f095e9c706bc8ae2348afa64..87b34da5702bf5bcf60e380825aa6fdcdf8a35a8 100644 (file)
@@ -15,8 +15,8 @@ all: $(BINS) $(MBINS)
 $(BINS): % : %.o
        $(CC) $(LDFLAGS) -o $@ $<
 
-$(MBINS): % : %.o main.o
-       $(CC) $(LDFLAGS) -o $@ main.o $<
+$(MBINS): % : %.o common.o
+       $(CC) $(LDFLAGS) -o $@ common.o $<
 
 clean:
        -rm -f *.o $(BINS) $(MBINS)
index f32bbf19edd566ad3ba7809f612941c8e652ed6b..e9846aab8cfeb2964fa2b085cf92fd70476ecc28 100644 (file)
@@ -24,6 +24,10 @@ ao_waveform:
        which currently is some of the members of the NI AT-MIO and PCI-MIO
        E series.  Creates a sine wave on an analog output channel.
 
+common:
+       This is not an example.  The file common.c just contains some code
+       that is common to many of the examples.
+
 cmd: 
        An example for directly using Comedi commands.  Comedi commands
        are used for asynchronous acquisition, with the timing controlled
@@ -61,10 +65,6 @@ ledclock:
        demo used a real-time task and controlled the parallel port
        directly.  This version is not complete.
 
-main:
-       This is not a demo.  The file main.c just contains auxiliary
-       functions and parses options.
-
 mmap:
        This example shows how to map the internal Comedi buffer
        and directly access samples instead of using read() and
@@ -106,7 +106,7 @@ tut2:
 
 COMMAND-LINE OPTIONS:
 
-Many of these demos are linked with the file main.c, which parses
+Many of these demos are linked with the file common.c, which parses
 command line options.  Some options don't make sense with all programs.
 The options are:
 
index 3bb922cdc3af52b95196e1afe30cfaa30530a6e9..091284de17a95ee5c27fc1e08f2f71ea0fe3aeec 100644 (file)
@@ -56,7 +56,7 @@ int main(int argc, char *argv[])
        parse_options(argc,argv);
 
        /* The following global variables used in this demo are
-        * defined in main.c, and can be modified by command line
+        * defined in common.c, and can be modified by command line
         * options.  When modifying this demo, you may want to
         * change them here. */
        //filename = "/dev/comedi0";
similarity index 100%
rename from demo/main.c
rename to demo/common.c