diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2009-11-03 15:21:50 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2009-11-03 15:21:50 (GMT) |
commit | b9e88cd4c8ed6f0e4e0fd05f1e01694cba906b6c (patch) | |
tree | d4f8559db5e4a2cd9ad98965ac21648842d5632e /Utilities/cmlibarchive/examples/minitar/Makefile | |
parent | 78b2d5097cc3b5d96f67d3f90ca92f7418043bc0 (diff) | |
download | CMake-b9e88cd4c8ed6f0e4e0fd05f1e01694cba906b6c.zip CMake-b9e88cd4c8ed6f0e4e0fd05f1e01694cba906b6c.tar.gz CMake-b9e88cd4c8ed6f0e4e0fd05f1e01694cba906b6c.tar.bz2 |
remove makefiles as they cause the in source build test of cmake to fail
Diffstat (limited to 'Utilities/cmlibarchive/examples/minitar/Makefile')
-rw-r--r-- | Utilities/cmlibarchive/examples/minitar/Makefile | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/Utilities/cmlibarchive/examples/minitar/Makefile b/Utilities/cmlibarchive/examples/minitar/Makefile deleted file mode 100644 index 4f8e708..0000000 --- a/Utilities/cmlibarchive/examples/minitar/Makefile +++ /dev/null @@ -1,34 +0,0 @@ - -# -# Adjust the following to control which options minitar gets -# built with. See comments in minitar.c for details. -# -CFLAGS= \ - -DNO_BZIP2_CREATE \ - -DNO_BZIP2_EXTRACT \ - -DNO_COMPRESS_EXTRACT \ - -DNO_CPIO_EXTRACT \ - -DNO_CREATE \ - -DNO_GZIP_CREATE \ - -DNO_GZIP_EXTRACT \ - -DNO_LOOKUP - -# Omit 'tree.o' if you're not including create support -#OBJS= minitar.o tree.o -OBJS= minitar.o - -all: minitar - -minitar: $(OBJS) - cc -o minitar -static $(OBJS) -larchive -lz -lbz2 - strip minitar - ls -l minitar - -minitar.o: minitar.c - -tree.o: tree.c - -clean:: - rm -f *.o - rm -f minitar - rm -f *~ |