Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Unicon Debug Adapter V1 #353

Merged
merged 2 commits into from
Jan 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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