mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
cd465afc8d
It is an extensible graphical debugger licensed under the GPL and written in Ada using GNAT and GtkAda. Supposedly, this is the future GNOME debugger. PR: 23280 Submitted by: Samuel Tardieu <sam@inf.enst.fr>
28 lines
731 B
Plaintext
28 lines
731 B
Plaintext
--- gnat/Makefile.in.orig Mon Dec 4 18:56:39 2000
|
|
+++ gnat/Makefile.in Mon Dec 4 18:57:03 2000
|
|
@@ -4,19 +4,19 @@
|
|
all: g-expect.o gexpect.o g-regpat.o gexpect_tty.o g-exptty.o
|
|
|
|
g-expect.o: g-expect.adb g-expect.ads
|
|
- gcc -c -gnatg $(CFLAGS) $<
|
|
+ $(CC) -c -gnatg $(CFLAGS) $<
|
|
|
|
gexpect.o: gexpect.c Makefile
|
|
- gcc -c $(ALL_CFLAGS) $<
|
|
+ $(CC) -c $(ALL_CFLAGS) $<
|
|
|
|
g-regpat.o: g-regpat.adb g-regpat.ads
|
|
- gcc -c -gnatg $(CFLAGS) $<
|
|
+ $(CC) -c -gnatg $(CFLAGS) $<
|
|
|
|
g-exptty.o: g-exptty.adb g-exptty.ads g-expect.ads
|
|
- gcc -c -gnatg $(CFLAGS) g-exptty.adb
|
|
+ $(CC) -c -gnatg $(CFLAGS) g-exptty.adb
|
|
|
|
gexpect_tty.o: gexpect_tty.c Makefile
|
|
- gcc -c $(ALL_CFLAGS) $<
|
|
+ $(CC) -c $(ALL_CFLAGS) $<
|
|
|
|
clean:
|
|
rm -f *.o *.ali *~ b~*
|