mirror of
https://git.freebsd.org/ports.git
synced 2025-06-09 14:50:31 -04:00
Permute is a simple program to read lines from standard input and generate all possible permutations of those lines. WWW: http://pigseye.kennesaw.edu/~rbentley/ PR: ports/85865 Submitted by: Erik Greenwald <erik@smluc.org>
8 lines
222 B
Text
8 lines
222 B
Text
--- Makefile.orig Fri Jul 14 14:51:01 2000
|
|
+++ Makefile Thu Sep 8 07:24:24 2005
|
|
@@ -1,3 +1,3 @@
|
|
+all: permute
|
|
permute: permute.cpp
|
|
- g++ -o permute permute.cpp
|
|
- strip permute
|
|
+ ${CXX} ${CXXFLAGS} -o permute permute.cpp
|