Toggle navigation
Beam GIT List
GitHub
Repo
Changelog
To do
Releases
Themes
Change log
Loading change log ...
To do ...
Loading todo ...
browsing:
82da226b6fa1e8f20c333d1185394cd4d7ef15cb
Branches
master
Tags
tms/release-pre-2.1.0
tms/release-2.2.1
tms/release-2.2.0
tms/release-2.1.0
tms/release-2.0.6
tms/release-2.0.5
tms/release-2.0.4
tms/release-2.0.3first
tms/release-2.0.3
tms/release-1.2.12
tms/release-1.2.11
tms/release-1.2.10
tms/release-1.2.9
tms/release-1.2.8
tms/release-1.2.6a
tms/release-1.2.6
tms/release-1.2.4
tms/release-1.2.3
tms/release-1.2.2
tms/release-1.2.0
tms/release-1.1.2
tms/release-1.1.1
tms/release-1.0.2
tms/release-1.0.1
tms/release-1.0.0
tms/release-0.4.3
tms/release-0.4.2
tms/release-0.4.1
tms/release-0.3.14
tms/release-0.3.13
tms/release-0.3.12
tms/release-0.3.10
tms/release-0.3.9
tms/release-0.3.8
tms/release-0.3.5
tms/release-0.3.4
tms/release-0.3.3
tms/release-0.2.7
tms/release-0.2.5
tms/release-0.2.3
tms-mcsys/release-2.1.0-1.beam
tms-mcsys/release-2.0.6-1.beam
tms-mcsys/release-1.2.9-1.beam
tms-fpga/release-1.2.5
tms-fpga/release-1.2.4
Files
Commits
Log
Graph
Stats
tms-old
beam
boapns
Makefile
RSS
Git
Fetch origin
Download
ZIP
TAR
Clone
Raw
View
History
Clone
HTTPS
Blames found: 17
Mode: text
Binary: false
Hang on, we reloading big blames...
6ae0d525
################################################################################ # Makefile for Boapns
57456599
# Copyright (c) 2014 All Right Reserved, Beam Ltd, http://www.beam.ltd.uk
6ae0d525
################################################################################ # TOP = ../.. include $(TOP)/Makefile.config
57456599
export LD_LIBRARY_PATH:=$(SRCLIBDIR):${LD_LIBRARY_PATH}
6ae0d525
PROGS = boapns boapnsc
57456599
OBJS = BoapnsD.o BoapnsC.o BoapnsS.o
6ae0d525
BIDL = ../bidl/bidl LDLIBS += -lpthread
57456599
LD = g++
6ae0d525
all: idl $(PROGS) install: all mkdir -p $(BINDIR) install $(PROGS) $(BINDIR)
82da226b
ifneq ("$(SYSSYSTEMD)", "") mkdir -p $(SYSSYSTEMD)/system ifeq ("$(PROJECT)", "TMS") install boapns-tms.service $(SYSSYSTEMD)/system else install boapns.service $(SYSSYSTEMD)/system endif else
6ae0d525
mkdir -p $(SYSETCDIR)/rc.d/init.d install boapns.rc $(SYSETCDIR)/rc.d/init.d/boapns
82da226b
endif
6ae0d525
includes: libs: clean:
57456599
rm -f *.d *.o *.a *.mo $(PROGS) Boapns[SCDT].* bidl.i
6ae0d525
idl: $(OBJS)
57456599
boapns: boapns.o $(OBJS) boapnsc: boapnsc.o $(OBJS)
6ae0d525
BoapnsD.h: Boapns.idl $(BIDL) -m bdata Boapns.idl BoapnsD.cc: Boapns.idl $(BIDL) -m bdata Boapns.idl BoapnsC.h: Boapns.idl $(BIDL) Boapns.idl BoapnsC.cc: Boapns.idl $(BIDL) Boapns.idl BoapnsS.h: Boapns.idl $(BIDL) Boapns.idl BoapnsS.cc: Boapns.idl $(BIDL) Boapns.idl