hlfw.ca

todo2

ref: 0ef8293bced988566398b44feecf60d1bd1ffa67
dir: /runners.go/

View raw version
package main

func list(c *command) error {
	// Parse makefile into DAG
	// Pretty print the leaves
	return nil
}

func listall(c *command) error {
	// Parse makefile into DAG
	// Pretty print everything
	return nil
}

func dot(c *command) error {
	// Parse makefile into DAG
	// Pretty print as dot format
	return nil
}

func rm(c *command) error {
	return nil
}

func add(c *command) error {
	return nil
}

// generate walks the file looking for a handful of known tokens
func generate(c *command) error {
	return nil
}

func help(c *command) error {
	return nil
}