Преглед на файлове

+ ide_all,ide_gdb,ide_full,ide_fullgdb targets

peter преди 26 години
родител
ревизия
450871e3ab
променени са 2 файла, в които са добавени 23 реда и са изтрити 4 реда
  1. 14 2
      base/Makefile
  2. 9 2
      base/README

+ 14 - 2
base/Makefile

@@ -194,7 +194,16 @@ gdb_sharedinstall:
 # IDE
 #######################################
 
-ide_all: rtl_all api_all fv_all gdb_all
+ide_all: rtl_all api_all fv_all
+	$(MAKE) -C $(IDEDIR) all
+
+ide_gdb: rtl_all api_all fv_all gdb_all
+	$(MAKE) -C $(IDEDIR) gdb
+
+ide_full: rtl_all api_all fv_all
+	$(MAKE) -C $(IDEDIR) full
+
+ide_fullgdb: rtl_all api_all fv_all gdb_all
 	$(MAKE) -C $(IDEDIR) fullgdb
 
 ide_clean:
@@ -231,7 +240,10 @@ sharedinstall: $(addsuffix _sharedinstall,$(MODULES))
 
 #
 # $Log$
-# Revision 1.2  1999-01-28 19:58:19  peter
+# Revision 1.3  1999-02-16 00:50:12  peter
+#   + ide_all,ide_gdb,ide_full,ide_fullgdb targets
+#
+# Revision 1.2  1999/01/28 19:58:19  peter
 #   * makefile updates
 #
 # Revision 1.1  1999/01/21 11:48:39  peter

+ 9 - 2
base/README

@@ -2,6 +2,7 @@
 First you need to install all the sources like:
 
 <basedir>/
+  base
   compiler
   rtl
   ide/text
@@ -11,7 +12,7 @@ First you need to install all the sources like:
   gdbint
   gdbint/libgdb
 
-- Copy the files (Makefile,makefile.fpc) from the base repository to the
+- Copy the files (Makefile,makefile.fpc) from the base/ directory to the
 <basedir>. 
 
 - get the libgdb_<system>.zip from tflily ftp and unzip it in the
@@ -21,4 +22,10 @@ gdbint/libgdb directory
 
 - Then you can type 'make info' and see it finds the correct files.
 
-- When that works fine, then you can type in the <basedir>: 'make ide_all'
+- When that works fine, then you can type in the <basedir>:
+
+  'make ide_all'	IDE without compiler/debugger
+  'make ide_gdb'	IDE with debugger
+  'make ide_full'	IDE with compiler
+  'make ide_fullgdb'	IDE with compiler/debugger
+