Changed CC and AR in demo makefiles to make cross compiling the demo applications easier.
This commit is contained in:
@@ -1,6 +1,8 @@
|
|||||||
@echo off
|
@echo off
|
||||||
echo Build with MinGW mingw.sourceforge.net
|
echo Build with MinGW mingw.sourceforge.net
|
||||||
echo Note: copy mingw32-make.exe to make.exe to build for Win32
|
echo Note: copy mingw32-make.exe to make.exe to build for Win32
|
||||||
|
set CC=gcc
|
||||||
|
set AR=ar
|
||||||
make BACNET_PORT=win32 BUILD=release clean all
|
make BACNET_PORT=win32 BUILD=release clean all
|
||||||
|
|
||||||
rem Build for MinGW debug
|
rem Build for MinGW debug
|
||||||
|
|||||||
@@ -1,5 +1,8 @@
|
|||||||
#Makefile to build BACnet Application for GCC compiler
|
#Makefile to build BACnet Application for GCC compiler
|
||||||
CC := gcc
|
|
||||||
|
# tools - only if you need them.
|
||||||
|
# Most platforms have this already defined
|
||||||
|
# CC = gcc
|
||||||
|
|
||||||
TARGET = bacdcc
|
TARGET = bacdcc
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,8 @@
|
|||||||
#Makefile to build BACnet Application for the Linux Port
|
#Makefile to build BACnet Application for the Linux Port
|
||||||
CC := gcc
|
|
||||||
|
# tools - only if you need them.
|
||||||
|
# Most platforms have this already defined
|
||||||
|
# CC = gcc
|
||||||
|
|
||||||
TARGET = bacepics
|
TARGET = bacepics
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,8 @@
|
|||||||
#Makefile to build BACnet Application for the Linux Port
|
#Makefile to build BACnet Application for the Linux Port
|
||||||
CC := gcc
|
|
||||||
|
# tools - only if you need them.
|
||||||
|
# Most platforms have this already defined
|
||||||
|
# CC = gcc
|
||||||
|
|
||||||
TARGET = baciamr
|
TARGET = baciamr
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,8 @@
|
|||||||
#Makefile to build BACnet Application for the Linux Port
|
#Makefile to build BACnet Application for the Linux Port
|
||||||
CC := gcc
|
|
||||||
|
# tools - only if you need them.
|
||||||
|
# Most platforms have this already defined
|
||||||
|
# CC = gcc
|
||||||
|
|
||||||
TARGET = bacinitr
|
TARGET = bacinitr
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,9 @@
|
|||||||
#Makefile to build BACnet Application for the Linux Port
|
#Makefile to build BACnet Application for the Linux Port
|
||||||
|
|
||||||
# Compiler to use
|
# tools - only if you need them.
|
||||||
CC := gcc
|
# Most platforms have this already defined
|
||||||
|
# CC = gcc
|
||||||
|
|
||||||
# Executable file name
|
# Executable file name
|
||||||
TARGET = mstpcap
|
TARGET = mstpcap
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,8 @@
|
|||||||
#Makefile to build BACnet Application for the Linux Port
|
#Makefile to build BACnet Application for the Linux Port
|
||||||
CC := gcc
|
|
||||||
|
# tools - only if you need them.
|
||||||
|
# Most platforms have this already defined
|
||||||
|
# CC = gcc
|
||||||
|
|
||||||
TARGET = bacarf
|
TARGET = bacarf
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,9 @@
|
|||||||
#Makefile to build BACnet Application using GCC compiler
|
#Makefile to build BACnet Application using GCC compiler
|
||||||
# Compiler to use
|
|
||||||
CC := gcc
|
# tools - only if you need them.
|
||||||
|
# Most platforms have this already defined
|
||||||
|
# CC = gcc
|
||||||
|
|
||||||
# Executable file name
|
# Executable file name
|
||||||
TARGET = bacrp
|
TARGET = bacrp
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,9 @@
|
|||||||
#Makefile to build BACnet Application for the Linux Port
|
#Makefile to build BACnet Application for the Linux Port
|
||||||
# Compiler to use
|
|
||||||
CC := gcc
|
# tools - only if you need them.
|
||||||
|
# Most platforms have this already defined
|
||||||
|
# CC = gcc
|
||||||
|
|
||||||
# Executable file name
|
# Executable file name
|
||||||
TARGET = bacrpm
|
TARGET = bacrpm
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,9 @@
|
|||||||
#Makefile to build BACnet Application for the Linux Port
|
#Makefile to build BACnet Application for the Linux Port
|
||||||
|
|
||||||
# Compiler to use
|
# tools - only if you need them.
|
||||||
CC := gcc
|
# Most platforms have this already defined
|
||||||
|
# CC = gcc
|
||||||
|
|
||||||
# Executable file name
|
# Executable file name
|
||||||
TARGET = bacrd
|
TARGET = bacrd
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,9 @@
|
|||||||
#Makefile to build BACnet Application for the Linux Port
|
#Makefile to build BACnet Application for the Linux Port
|
||||||
|
|
||||||
# Compiler to use
|
# tools - only if you need them.
|
||||||
CC := gcc
|
# Most platforms have this already defined
|
||||||
|
# CC = gcc
|
||||||
|
|
||||||
# Executable file name
|
# Executable file name
|
||||||
TARGET = bacserv
|
TARGET = bacserv
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,9 @@
|
|||||||
#Makefile to build BACnet Application for the Linux Port
|
#Makefile to build BACnet Application for the Linux Port
|
||||||
|
|
||||||
# Compiler to use
|
# tools - only if you need them.
|
||||||
CC := gcc
|
# Most platforms have this already defined
|
||||||
|
# CC = gcc
|
||||||
|
|
||||||
# Executable file name
|
# Executable file name
|
||||||
TARGET = bacts
|
TARGET = bacts
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,9 @@
|
|||||||
#Makefile to build BACnet Application for the Linux Port
|
#Makefile to build BACnet Application for the Linux Port
|
||||||
|
|
||||||
# Compiler to use
|
# tools - only if you need them.
|
||||||
CC := gcc
|
# Most platforms have this already defined
|
||||||
|
# CC = gcc
|
||||||
|
|
||||||
# Executable file name
|
# Executable file name
|
||||||
TARGET = bacucov
|
TARGET = bacucov
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,9 @@
|
|||||||
#Makefile to build BACnet Application for the Linux Port
|
#Makefile to build BACnet Application for the Linux Port
|
||||||
|
|
||||||
# Compiler to use
|
# tools - only if you need them.
|
||||||
CC := gcc
|
# Most platforms have this already defined
|
||||||
|
# CC = gcc
|
||||||
|
|
||||||
# Executable file name
|
# Executable file name
|
||||||
TARGET = bacwh
|
TARGET = bacwh
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,8 @@
|
|||||||
#Makefile to build BACnet Application for the Linux Port
|
#Makefile to build BACnet Application for the Linux Port
|
||||||
CC := gcc
|
|
||||||
|
# tools - only if you need them.
|
||||||
|
# Most platforms have this already defined
|
||||||
|
# CC = gcc
|
||||||
|
|
||||||
TARGET = bacwi
|
TARGET = bacwi
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,8 @@
|
|||||||
#Makefile to build BACnet Application for the Linux Port
|
#Makefile to build BACnet Application for the Linux Port
|
||||||
CC := gcc
|
|
||||||
|
# tools - only if you need them.
|
||||||
|
# Most platforms have this already defined
|
||||||
|
# CC = gcc
|
||||||
|
|
||||||
TARGET = bacwir
|
TARGET = bacwir
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,9 @@
|
|||||||
#Makefile to build BACnet Application for the Linux Port
|
#Makefile to build BACnet Application for the Linux Port
|
||||||
|
|
||||||
# Compiler to use
|
# tools - only if you need them.
|
||||||
CC := gcc
|
# Most platforms have this already defined
|
||||||
|
# CC = gcc
|
||||||
|
|
||||||
# Executable file name
|
# Executable file name
|
||||||
TARGET = bacawf
|
TARGET = bacawf
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,9 @@
|
|||||||
#Makefile to build BACnet Application for the Linux Port
|
#Makefile to build BACnet Application for the Linux Port
|
||||||
|
|
||||||
# Compiler to use
|
# tools - only if you need them.
|
||||||
CC := gcc
|
# Most platforms have this already defined
|
||||||
|
# CC = gcc
|
||||||
|
|
||||||
# Executable file name
|
# Executable file name
|
||||||
TARGET = bacwp
|
TARGET = bacwp
|
||||||
|
|
||||||
|
|||||||
@@ -1,10 +1,9 @@
|
|||||||
#Makefile to build BACnet Library with GCC
|
#Makefile to build BACnet Library with GCC
|
||||||
|
|
||||||
# tools
|
# tools - only if you need them.
|
||||||
# (':=' sets them to gcc and ar unless they are already defined for
|
# Most platforms have this already defined
|
||||||
# a board-specific cross-compiler and archiver)
|
# CC = gcc
|
||||||
CC := gcc
|
# AR = ar
|
||||||
AR := ar
|
|
||||||
|
|
||||||
# target
|
# target
|
||||||
TARGET = bacnet
|
TARGET = bacnet
|
||||||
|
|||||||
Reference in New Issue
Block a user