summaryrefslogtreecommitdiff
path: root/src/mcpat/cacti/makefile
diff options
context:
space:
mode:
authorTayler Hetherington <[email protected]>2012-12-13 10:30:09 -0800
committerAndrew Boktor <[email protected]>2014-08-14 13:49:23 -0700
commita4a321028023cb9d65d533adaa3b6c2c3b49eee2 (patch)
tree97ff957185a372dd94fbe4a51cf149dc1ea4ac9b /src/mcpat/cacti/makefile
parentdf3051de64e514a7d07f7b7ff0b6c9f95ee2f9ee (diff)
Renaming src/mcpat -> src/gpuwattch
[git-p4: depot-paths = "//depot/gpgpu_sim_research/fermi/distribution/": change = 14798]
Diffstat (limited to 'src/mcpat/cacti/makefile')
-rw-r--r--src/mcpat/cacti/makefile32
1 files changed, 0 insertions, 32 deletions
diff --git a/src/mcpat/cacti/makefile b/src/mcpat/cacti/makefile
deleted file mode 100644
index 6cc36db..0000000
--- a/src/mcpat/cacti/makefile
+++ /dev/null
@@ -1,32 +0,0 @@
-TAR = cacti
-
-.PHONY: dbg opt depend clean clean_dbg clean_opt
-
-all: opt
-
-dbg: $(TAR).mk obj_dbg
- @$(MAKE) TAG=dbg -C . -f $(TAR).mk
-
-opt: $(TAR).mk obj_opt
- @$(MAKE) TAG=opt -C . -f $(TAR).mk
-
-obj_dbg:
- mkdir $@
-
-obj_opt:
- mkdir $@
-
-depend:
- @$(MAKE) TAG=opt -C . -f $(TAR).mk depend
-
-clean: clean_dbg clean_opt
-
-clean_dbg: obj_dbg
- @$(MAKE) TAG=dbg -C . -f $(TAR).mk clean
- rm -rf $<
-
-clean_opt: obj_opt
- @$(MAKE) TAG=opt -C . -f $(TAR).mk clean
- rm -rf $<
-
-