Modified makefiles to be able to build mstpcrc independently.

This commit is contained in:
skarg
2016-07-07 00:12:27 +00:00
parent 4154a43e00
commit 42ec095392
3 changed files with 8 additions and 3 deletions
+4 -2
View File
@@ -77,6 +77,9 @@ server:
mstpcap: mstpcap:
$(MAKE) -B -C demo mstpcap $(MAKE) -B -C demo mstpcap
mstpcrc: library
$(MAKE) -B -C demo mstpcrc
iam: iam:
$(MAKE) -B -C demo iam $(MAKE) -B -C demo iam
@@ -89,8 +92,7 @@ abort:
error: error:
$(MAKE) -B -C demo error $(MAKE) -B -C demo error
router: router: library
$(MAKE) -s -C lib all
$(MAKE) -s -C demo router $(MAKE) -s -C demo router
# Add "ports" to the build, if desired # Add "ports" to the build, if desired
+3
View File
@@ -92,6 +92,9 @@ server:
mstpcap: mstpcap:
$(MAKE) -b -C mstpcap $(MAKE) -b -C mstpcap
mstpcrc:
$(MAKE) -b -C mstpcrc
iam: iam:
$(MAKE) -b -C iam $(MAKE) -b -C iam
+1 -1
View File
@@ -6,4 +6,4 @@ set CC=gcc
set AR=ar set AR=ar
set MAKE=make set MAKE=make
set TARGET_EXT=.exe set TARGET_EXT=.exe
make clean all make BACNET_PORT=win32 clean all