Skip to content

Commit e6b6522

Browse files
authored
Merge pull request #353 from mstreeter10/uda_changes
Unicon Debug Adapter V1
2 parents 5640082 + 439eb10 commit e6b6522

22 files changed

+1594
-275
lines changed

.gitignore

+4
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,8 @@ uni/progs/uget
6767
uni/progs/umake
6868
uni/progs/uprof
6969
uni/udb/udb
70+
uni/udb/udap/udap
71+
uni/udb/udap/dapcom
7072
uni/unicon/unicon
7173
uni/unidep/unidep
7274
uni/unidoc/.lastbuild
@@ -81,6 +83,8 @@ uni/xml/testinvalid
8183
uni/xml/testnotwf
8284
uni/xml/testvalid
8385
uni/ulsp/ulsp
86+
uni/ulsp/udap/udap
87+
uni/ulsp/udap/progcom
8488

8589
# uflex
8690
uni/uflex/flexgram.icn

uni/udb/Makefile

+6-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ CLEAN = clean
77
cflags = $(UFLAGS) -c
88
ldflags = -u
99

10+
.PHONY: all udap
1011
#
1112
# Add dependency on system include "evdefs.icn" because it is really sad
1213
# if udb gets broken.
@@ -39,7 +40,10 @@ DTA = dta
3940
DTA_UFILES = $(DTA)/atomic_agent.u $(DTA)/temporals.u
4041

4142

42-
all: Libfiles Assertions $(EXEs)
43+
all: Libfiles Assertions udap $(EXEs)
44+
45+
udap:
46+
cd udap; $(MAKE)
4347

4448
Libfiles:
4549
cd $(LIB); $(MAKE)
@@ -134,6 +138,7 @@ clean:
134138
cd $(DTA); $(MAKE) clean
135139
$(DEL) ../../bin/$(EXEs)
136140
cd lib; $(MAKE) clean
141+
cd udap; $(MAKE) clean
137142

138143
cleantools:
139144
cd $(LIB); $(MAKE) cleantools

0 commit comments

Comments
 (0)