summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJed Barber <jjbarber@y7mail.com>2015-10-17 14:20:48 +1100
committerJed Barber <jjbarber@y7mail.com>2015-10-17 14:20:48 +1100
commit63c3043200de6b28a8c192f1b5625940435ea55e (patch)
treeab761edbbc71b2b2f28e0ef7e10b8adc58d44320
parent5933f248c18914fbbce03102b340361a575eae3c (diff)
Organised source code a bit, added makefile with clean target
-rw-r--r--makefile7
-rw-r--r--sort/bubble.adb (renamed from bubble.adb)0
-rw-r--r--sort/bubble.ads (renamed from bubble.ads)0
-rw-r--r--sort/cocktail.adb (renamed from cocktail.adb)0
-rw-r--r--sort/cocktail.ads (renamed from cocktail.ads)0
-rw-r--r--sort/comb.adb (renamed from comb.adb)0
-rw-r--r--sort/comb.ads (renamed from comb.ads)0
-rw-r--r--sort/gnomesort.hs (renamed from gnomesort.hs)0
-rw-r--r--sort/insertion.adb (renamed from insertion.adb)0
-rw-r--r--sort/insertion.ads (renamed from insertion.ads)0
-rw-r--r--sort/mergesort.hs (renamed from mergesort.hs)0
-rw-r--r--sort/odd_even.adb (renamed from odd_even.adb)0
-rw-r--r--sort/odd_even.ads (renamed from odd_even.ads)0
-rw-r--r--sort/quick.adb (renamed from quick.adb)0
-rw-r--r--sort/quick.ads (renamed from quick.ads)0
-rw-r--r--sort/quicksort.hs (renamed from quicksort.hs)0
-rw-r--r--sort/selection.adb (renamed from selection.adb)0
-rw-r--r--sort/selection.ads (renamed from selection.ads)0
-rw-r--r--sort/strandsort.hs (renamed from strandsort.hs)0
19 files changed, 7 insertions, 0 deletions
diff --git a/makefile b/makefile
new file mode 100644
index 0000000..fce4ef0
--- /dev/null
+++ b/makefile
@@ -0,0 +1,7 @@
+
+
+
+clean:
+ find . -name '*.o' -delete
+ find . -name '*.ali' -delete
+
diff --git a/bubble.adb b/sort/bubble.adb
index f4f2485..f4f2485 100644
--- a/bubble.adb
+++ b/sort/bubble.adb
diff --git a/bubble.ads b/sort/bubble.ads
index 529c5c6..529c5c6 100644
--- a/bubble.ads
+++ b/sort/bubble.ads
diff --git a/cocktail.adb b/sort/cocktail.adb
index ecc9e82..ecc9e82 100644
--- a/cocktail.adb
+++ b/sort/cocktail.adb
diff --git a/cocktail.ads b/sort/cocktail.ads
index 8f21ebb..8f21ebb 100644
--- a/cocktail.ads
+++ b/sort/cocktail.ads
diff --git a/comb.adb b/sort/comb.adb
index d13847c..d13847c 100644
--- a/comb.adb
+++ b/sort/comb.adb
diff --git a/comb.ads b/sort/comb.ads
index a8200e7..a8200e7 100644
--- a/comb.ads
+++ b/sort/comb.ads
diff --git a/gnomesort.hs b/sort/gnomesort.hs
index 2a9b9ce..2a9b9ce 100644
--- a/gnomesort.hs
+++ b/sort/gnomesort.hs
diff --git a/insertion.adb b/sort/insertion.adb
index 863fb8e..863fb8e 100644
--- a/insertion.adb
+++ b/sort/insertion.adb
diff --git a/insertion.ads b/sort/insertion.ads
index 19b6b2c..19b6b2c 100644
--- a/insertion.ads
+++ b/sort/insertion.ads
diff --git a/mergesort.hs b/sort/mergesort.hs
index 5c140b3..5c140b3 100644
--- a/mergesort.hs
+++ b/sort/mergesort.hs
diff --git a/odd_even.adb b/sort/odd_even.adb
index 095850e..095850e 100644
--- a/odd_even.adb
+++ b/sort/odd_even.adb
diff --git a/odd_even.ads b/sort/odd_even.ads
index 735a5ef..735a5ef 100644
--- a/odd_even.ads
+++ b/sort/odd_even.ads
diff --git a/quick.adb b/sort/quick.adb
index 4586b3b..4586b3b 100644
--- a/quick.adb
+++ b/sort/quick.adb
diff --git a/quick.ads b/sort/quick.ads
index e406d51..e406d51 100644
--- a/quick.ads
+++ b/sort/quick.ads
diff --git a/quicksort.hs b/sort/quicksort.hs
index 78330f3..78330f3 100644
--- a/quicksort.hs
+++ b/sort/quicksort.hs
diff --git a/selection.adb b/sort/selection.adb
index 1b49769..1b49769 100644
--- a/selection.adb
+++ b/sort/selection.adb
diff --git a/selection.ads b/sort/selection.ads
index af085af..af085af 100644
--- a/selection.ads
+++ b/sort/selection.ads
diff --git a/strandsort.hs b/sort/strandsort.hs
index 8226b79..8226b79 100644
--- a/strandsort.hs
+++ b/sort/strandsort.hs