summaryrefslogtreecommitdiff
path: root/src/gpuwattch/makefile
diff options
context:
space:
mode:
authorVijayKandiah <[email protected]>2021-10-17 02:18:10 -0500
committerVijayKandiah <[email protected]>2021-10-17 02:18:10 -0500
commit84c6cf45131e42b1a724ebf7977987a9ddb70db9 (patch)
treee82f15238e79a03f3cc2435d4f9bb48d5023e8ae /src/gpuwattch/makefile
parent4a4fc87a2dcd95bfe298f2b3d18a9833a506e499 (diff)
AccelWattch dev Integration
Diffstat (limited to 'src/gpuwattch/makefile')
-rw-r--r--src/gpuwattch/makefile35
1 files changed, 0 insertions, 35 deletions
diff --git a/src/gpuwattch/makefile b/src/gpuwattch/makefile
deleted file mode 100644
index 354c9ec..0000000
--- a/src/gpuwattch/makefile
+++ /dev/null
@@ -1,35 +0,0 @@
-TAR = mcpat
-
-.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 -p $@
-
-obj_opt:
- mkdir -p $@
-
-depend:
- @$(MAKE) TAG=opt -C . -f $(TAR).mk depend
-
-clean: clean_dbg clean_opt clean_cacti
-
-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 $<
-
-clean_cacti: cacti
- rm -rf cacti/obj_opt
-
-