I believe that is already answered under the Arduino FAQ http://arduino.cc/en/Main/FAQ
Can I build a commercial product based on Arduino?
Yes, with the following conditions:
Physically embedding an Arduino board inside a commercial product does not require you to disclose or open-source any information about its design.
Deriving the design of a commercial product from the Eagle files for an Arduino board requires you to release the modified files under the same Creative Commons Attribution Share-Alike license. You may manufacture and sell the resulting product.
Using the Arduino core and libraries for the firmware of a commercial product does not require you to release the source code for the firmware. The LGPL does, however, require you to make available object files that allow for the relinking of the firmware against updated versions of the Arduino core and libraries. Any modifications to the core and libraries must be released under the LGPL.
The source code for the Arduino environment is covered by the GPL, which requires any modifications to be open-sourced under the same license. It does not prevent the sale of derivative software or its inclusion in commercial products.
In all cases, the exact requirements are determined by the applicable license. Additionally, see the previous question for information about the use of the name [ch8220]Arduino[ch8221].
So it seems you can, as long as you publish the the object file(s). Now I'm not entirely sure what an object files is or how they work, so on that someone else better answer. All I know, or think I know, is that its an intermediate step in the compiling process of the final hex file.
But its not completely secure (from what I understand). So I guess your out of (legal) luck if you want your clock completely shrouded in mystery as to its inner magic
I wouldn't be surprised if there was some kind of a disassembler(?) for object files to reverse engineer some source code. While it ideally would result in the same object file (if compiled), it would not be your original source code, but an automatically generated one (I would think, I guess original variable names, comments etc is not included in the object file).