summaryrefslogtreecommitdiff
path: root/bin/Makefile
diff options
context:
space:
mode:
authornobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1997-01-01 08:00:34 +0000
committernobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1997-01-01 08:00:34 +0000
commitd9661aebab28abc0ec4fb1e716170d347d56c168 (patch)
treeecb671ab4b8e299bf5cbb8b2dfeed8a49b65fc06 /bin/Makefile
parentea0d28240863caf437a18071bfd03e7b146c5ade (diff)
downloadATCD-unlabeled-4.3.2.tar.gz
This commit was manufactured by cvs2svn to create branchunlabeled-4.3.2
'unlabeled-4.3.2'.
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
-