Skip to content

Commit

Permalink
Merge pull request #353 from mstreeter10/uda_changes
Browse files Browse the repository at this point in the history
Unicon Debug Adapter V1
  • Loading branch information
Jafaral authored Jan 24, 2024
2 parents 5640082 + 439eb10 commit e6b6522
Show file tree
Hide file tree
Showing 22 changed files with 1,594 additions and 275 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,8 @@ uni/progs/uget
uni/progs/umake
uni/progs/uprof
uni/udb/udb
uni/udb/udap/udap
uni/udb/udap/dapcom
uni/unicon/unicon
uni/unidep/unidep
uni/unidoc/.lastbuild
Expand All @@ -81,6 +83,8 @@ uni/xml/testinvalid
uni/xml/testnotwf
uni/xml/testvalid
uni/ulsp/ulsp
uni/ulsp/udap/udap
uni/ulsp/udap/progcom

# uflex
uni/uflex/flexgram.icn
Expand Down
7 changes: 6 additions & 1 deletion uni/udb/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ CLEAN = clean
cflags = $(UFLAGS) -c
ldflags = -u

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


all: Libfiles Assertions $(EXEs)
all: Libfiles Assertions udap $(EXEs)

udap:
cd udap; $(MAKE)

Libfiles:
cd $(LIB); $(MAKE)
Expand Down Expand Up @@ -134,6 +138,7 @@ clean:
cd $(DTA); $(MAKE) clean
$(DEL) ../../bin/$(EXEs)
cd lib; $(MAKE) clean
cd udap; $(MAKE) clean

cleantools:
cd $(LIB); $(MAKE) cleantools
Loading

0 comments on commit e6b6522

Please sign in to comment.