This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ifdef VERBOSE | |
Q = | |
E = @true | |
else | |
Q = @ | |
E = @echo | |
endif | |
CFILES := $(shell find src -mindepth 1 -maxdepth 4 -name "*.c") | |
CXXFILES := $(shell find src -mindepth 1 -maxdepth 4 -name "*.cpp") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{-# LANGUAGE ScopedTypeVariables #-} | |
-- | |
-- Copied from Yesod | |
-- see http://www.yesodweb.com/ | |
-- | |
module Reload (main, develLoop) where | |
-- reload | |
import Control.Concurrent (forkIO, threadDelay) | |
import qualified Control.Exception as Ex |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### | |
A teapot with an orbiting directional light source that you can rotate with the mouse. | |
The white dot is not the actual position of the light - it just indicates its direction | |
relative to the teapot. | |
Lindsay S. Kay, (CoffeeScript port by Rehno Lindeque) | |
[email protected] | |
### |