Skip to content

Commit

Permalink
start to separate out reader
Browse files Browse the repository at this point in the history
  • Loading branch information
Rodney Thayer committed Aug 17, 2024
1 parent 22a74a3 commit f405cea
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@ all: lib
(cd src-ui; make all; cd ..)
(cd src-tools; make all; cd ..)

reader: lib
(cd src-reader; make)

lib:
(cd include; make all; cd ..)
(cd src-lib; make all)
Expand Down Expand Up @@ -64,6 +67,7 @@ clean:
(cd test; make clean; cd ..)
(cd doc; make clean; )
(cd package; make clean)
(cd src-reader; make clean);
rm -f release-osdp-conformance.tgz *.deb
rm -rf opt

7 changes: 7 additions & 0 deletions src-reader/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
all:
(cd ../src-485; make)

clean:
(cd ../src-485; make clean)


0 comments on commit f405cea

Please sign in to comment.