global: Corrected absolute paths in bin/ symbolic links
[h316.git] / Makefile
index 8bf28a4e2ee5328c5ad8a1b89448afedfb427c96..6f781ba90e7472d3fe251fff5a90bb8d986ac1a2 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -5,7 +5,7 @@ SUBDIRS=pc-tools
 
 # Now we build the libraries which are always rebuild using the original compiler and 
 # assembler tapes
-SUBDIRS+=lib/iolib lib/fortran \
+SUBDIRS+=lib
 
 # Here we link the assembler - via a trick
 SUBDIRS+=systems/dap
@@ -29,17 +29,14 @@ SUBDIRS+=programs
 
 
 default: 
-       @mklink.sh
        @$(foreach subdir, $(SUBDIRS), $(MAKE) -C $(subdir)&&) /bin/true
 
 clean:
-       @mklink.sh
        @$(foreach subdir, $(SUBDIRS), $(MAKE) -C $(subdir) $@&&) true
-       @rmlink.sh
+       @rm -f h316rc
 
 %:
        @echo $@
-       @mklink.sh
        $(foreach subdir, $(SUBDIRS), $(MAKE) -C $(subdir) $@;)