Initial import

This commit is contained in:
Pierre Pronchery 2013-01-02 23:25:02 +01:00
parent c387d8ee4d
commit 16af8ea081
2 changed files with 32 additions and 0 deletions

25
include/Makefile Normal file
View 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
View File

@ -0,0 +1,7 @@
targets=Init.h
dist=Makefile
[Init.h]
type=script
script=../data/appbroker.sh
depends=../data/Init.interface