[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

New queue!



How do i add a new queue, such that the hierachy looks like this:

			Queue
			    |
			    |
			  RED
			    |
			    |
			newQueue

I performed the following steps:

1) made two new files: newQueue.h and newQueue.cc, with the neccessary Otcl
linkage and hiearchy specification.
2) added the following two lines in "makefile.vc":
	newQueue.o (in object files)
	newQueue.h (in header files)
3) tried to do "make" in the ns directory, so that the new code is compiled
(i.e. newQueue.o is generated), but make doesnt compile the new code; it
behaves as it does not even know that newQueue is there, as newQueue.o is
not generated!!! 

Am i missing something??????????