summaryrefslogtreecommitdiff
path: root/bin/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'bin/Makefile')
-rw-r--r--bin/Makefile37
1 files changed, 0 insertions, 37 deletions
diff --git a/bin/Makefile b/bin/Makefile
deleted file mode 100644
index 3125c849be6..00000000000
--- a/bin/Makefile
+++ /dev/null
@@ -1,37 +0,0 @@
-#############################################################################
-#
-# Makefile for assignment 1
-#
-#############################################################################
-
-CXX = CC
-CFILES = clone.cpp
-OFILES = clone.o
-DFLAGS = -g
-CFLAGS = $(DFLAGS) -I$(WRAPPER_ROOT)
-
-#############################################################################
-# C++ directives
-
-.SUFFIXES: .cpp
-.cpp.o:
- $(CXX) $(CFLAGS) -c $<
-#############################################################################
-
-clone: $(OFILES)
- $(CXX) $(CFLAGS) -o $@ $(OFILES)
-
-clean:
- -/bin/rm -f *.o *.out *~ core
-
-realclean: clean
- -/bin/rm -fr clone
-
-depend:
- g++dep -f Makefile $(CFILES)
-# DO NOT DELETE THIS LINE -- g++dep uses it.
-# DO NOT PUT ANYTHING AFTER THIS LINE, IT WILL GO AWAY.
-
-clone.o : clone.cpp
-# IF YOU PUT ANYTHING HERE IT WILL GO AWAY
-