initial commit
This commit is contained in:
commit
7fabc826c7
12 changed files with 33929 additions and 0 deletions
25
Makefile
Normal file
25
Makefile
Normal file
|
@ -0,0 +1,25 @@
|
|||
all: bluetopd
|
||||
|
||||
include config.mk
|
||||
|
||||
PREFIX = /usr/local
|
||||
|
||||
DC = ${_DC}
|
||||
CFLAGS = ${_CFLAGS} -wi
|
||||
OBJS = ${_OBJS}
|
||||
|
||||
bluetopd: ${OBJS}
|
||||
${DC} ${_LDFLAGS} -of=$@ ${OBJS}
|
||||
|
||||
.SUFFIXES: .d .o
|
||||
|
||||
.d.o:
|
||||
${DC} ${CFLAGS} -of=$@ -c $<
|
||||
|
||||
clean:
|
||||
rm -f bluetopd ${OBJS}
|
||||
|
||||
install: bluetopd
|
||||
install -Dm755 bluetopd ${DESTDIR}${PREFIX}/bin/bluetopd
|
||||
|
||||
.PHONY: all clean install
|
Loading…
Add table
Add a link
Reference in a new issue