Initial import
This commit is contained in:
parent
c387d8ee4d
commit
16af8ea081
25
include/Makefile
Normal file
25
include/Makefile
Normal file
|
@ -0,0 +1,25 @@
|
||||||
|
TARGETS = Init.h
|
||||||
|
PREFIX = /usr/local
|
||||||
|
DESTDIR =
|
||||||
|
RM ?= rm -f
|
||||||
|
LN ?= ln -f
|
||||||
|
MKDIR ?= mkdir -p
|
||||||
|
INSTALL ?= install
|
||||||
|
|
||||||
|
|
||||||
|
all: $(TARGETS)
|
||||||
|
|
||||||
|
Init.h: ../data/Init.interface
|
||||||
|
../data/appbroker.sh -P "$(PREFIX)" -- "Init.h"
|
||||||
|
|
||||||
|
clean:
|
||||||
|
$(RM) -- $(Init.h_OBJS)
|
||||||
|
|
||||||
|
distclean: clean
|
||||||
|
$(RM) -- $(TARGETS)
|
||||||
|
|
||||||
|
install: $(TARGETS)
|
||||||
|
|
||||||
|
uninstall:
|
||||||
|
|
||||||
|
.PHONY: all clean distclean install uninstall
|
7
include/project.conf
Normal file
7
include/project.conf
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
targets=Init.h
|
||||||
|
dist=Makefile
|
||||||
|
|
||||||
|
[Init.h]
|
||||||
|
type=script
|
||||||
|
script=../data/appbroker.sh
|
||||||
|
depends=../data/Init.interface
|
Loading…
Reference in New Issue
Block a user