summaryrefslogtreecommitdiff
path: root/src/gpuwattch/cacti/makefile
diff options
context:
space:
mode:
Diffstat (limited to 'src/gpuwattch/cacti/makefile')
-rw-r--r--src/gpuwattch/cacti/makefile32
1 files changed, 0 insertions, 32 deletions
diff --git a/src/gpuwattch/cacti/makefile b/src/gpuwattch/cacti/makefile
deleted file mode 100644
index 6cc36db..0000000
--- a/src/gpuwattch/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 $<
-
-