Compare commits
1 Commits
master
...
khorben/im
Author | SHA1 | Date | |
---|---|---|---|
f2945b0c13 |
|
@ -1,23 +1,22 @@
|
||||||
targets=test,test2,test3,test4,test 5
|
|
||||||
dist=Makefile
|
dist=Makefile
|
||||||
|
|
||||||
[test]
|
[target::test]
|
||||||
type=binary
|
type=binary
|
||||||
sources=test.c,main.c
|
sources=test.c,main.c
|
||||||
install=$(BINDIR)
|
install=$(BINDIR)
|
||||||
|
|
||||||
[test2]
|
[target::test2]
|
||||||
type=binary
|
type=binary
|
||||||
sources=test2.m
|
sources=test2.m
|
||||||
ldflags=-lobjc
|
ldflags=-lobjc
|
||||||
|
|
||||||
[test3]
|
[target::test3]
|
||||||
type=binary
|
type=binary
|
||||||
sources=test3.cpp
|
sources=test3.cpp
|
||||||
enabled=1
|
enabled=1
|
||||||
ldflags=-ldl -lsocket -lm
|
ldflags=-ldl -lsocket -lm
|
||||||
|
|
||||||
[test4]
|
[target::test4]
|
||||||
type=binary
|
type=binary
|
||||||
enabled=0
|
enabled=0
|
||||||
sources=test4.asm,test4.S
|
sources=test4.asm,test4.S
|
||||||
|
@ -28,7 +27,7 @@ asflags=-m32
|
||||||
[test4.S]
|
[test4.S]
|
||||||
cppflags=-nostdinc
|
cppflags=-nostdinc
|
||||||
|
|
||||||
[test 5]
|
[target::test 5]
|
||||||
type=binary
|
type=binary
|
||||||
sources=test 5.c,main.c
|
sources=test 5.c,main.c
|
||||||
install=$(BINDIR)/test 5
|
install=$(BINDIR)/test 5
|
||||||
|
|
|
@ -1,26 +1,25 @@
|
||||||
targets=phony,s p a c e s,s p a c e s 2,target,xinstall
|
|
||||||
dist=Makefile
|
dist=Makefile
|
||||||
|
|
||||||
[phony]
|
[target::phony]
|
||||||
type=command
|
type=command
|
||||||
command=exit 42
|
command=exit 42
|
||||||
phony=1
|
phony=1
|
||||||
|
|
||||||
[s p a c e s]
|
[target::s p a c e s]
|
||||||
type=command
|
type=command
|
||||||
command=echo $@
|
command=echo $@
|
||||||
phony=1
|
phony=1
|
||||||
|
|
||||||
[s p a c e s 2]
|
[target::s p a c e s 2]
|
||||||
type=command
|
type=command
|
||||||
command=echo $@
|
command=echo $@
|
||||||
install=$(PREFIX)
|
install=$(PREFIX)
|
||||||
|
|
||||||
[target]
|
[target::target]
|
||||||
type=command
|
type=command
|
||||||
command=$(MAKE) command
|
command=$(MAKE) command
|
||||||
|
|
||||||
[xinstall]
|
[target::xinstall]
|
||||||
type=command
|
type=command
|
||||||
command=$(MAKE) command
|
command=$(MAKE) command
|
||||||
install=$(PREFIX)
|
install=$(PREFIX)
|
||||||
|
|
|
@ -1,19 +1,18 @@
|
||||||
subdirs=gtkdoc
|
subdirs=gtkdoc
|
||||||
targets=gtkdoc/example.types,gtkdoc/html.stamp,gtkdoc/tmpl.stamp,gtkdoc/xml.stamp
|
|
||||||
dist=Makefile
|
dist=Makefile
|
||||||
|
|
||||||
#targets
|
#targets
|
||||||
[gtkdoc/example.types]
|
[target::gtkdoc/example.types]
|
||||||
type=script
|
type=script
|
||||||
script=../../src/scripts/doc/gtkdoc.sh
|
script=../../src/scripts/doc/gtkdoc.sh
|
||||||
depends=../../src/scripts/doc/gtkdoc.sh,../config.sh
|
depends=../../src/scripts/doc/gtkdoc.sh,../config.sh
|
||||||
|
|
||||||
[gtkdoc/html.stamp]
|
[target::gtkdoc/html.stamp]
|
||||||
type=script
|
type=script
|
||||||
script=../../src/scripts/doc/gtkdoc.sh
|
script=../../src/scripts/doc/gtkdoc.sh
|
||||||
depends=../../src/scripts/doc/gtkdoc.sh,../config.sh,gtkdoc/example-docs.xml,gtkdoc/xml/gtkdocentities.ent,$(OBJDIR)gtkdoc/xml.stamp,$(OBJDIR)gtkdoc/tmpl.stamp
|
depends=../../src/scripts/doc/gtkdoc.sh,../config.sh,gtkdoc/example-docs.xml,gtkdoc/xml/gtkdocentities.ent,$(OBJDIR)gtkdoc/xml.stamp,$(OBJDIR)gtkdoc/tmpl.stamp
|
||||||
|
|
||||||
[gtkdoc/tmpl.stamp]
|
[target::gtkdoc/tmpl.stamp]
|
||||||
type=script
|
type=script
|
||||||
script=../../src/scripts/doc/gtkdoc.sh
|
script=../../src/scripts/doc/gtkdoc.sh
|
||||||
depends=../../src/scripts/doc/gtkdoc.sh,../config.sh,$(OBJDIR)gtkdoc/example.types
|
depends=../../src/scripts/doc/gtkdoc.sh,../config.sh,$(OBJDIR)gtkdoc/example.types
|
||||||
|
|
|
@ -1,15 +1,14 @@
|
||||||
targets=main.class,app.class,s p a c e.class
|
|
||||||
javac=javac
|
javac=javac
|
||||||
|
|
||||||
[main.class]
|
[target::main.class]
|
||||||
type=object
|
type=object
|
||||||
jflags=-verbose
|
jflags=-verbose
|
||||||
sources=main.java
|
sources=main.java
|
||||||
|
|
||||||
[app.class]
|
[target::app.class]
|
||||||
type=object
|
type=object
|
||||||
sources=app.java
|
sources=app.java
|
||||||
|
|
||||||
[s p a c e.class]
|
[target::s p a c e.class]
|
||||||
type=object
|
type=object
|
||||||
sources=s p a c e.java
|
sources=s p a c e.java
|
||||||
|
|
|
@ -1,14 +1,13 @@
|
||||||
targets=libtest,libs p a c e
|
|
||||||
ldflags=-ldl -lintl -lossaudio -ltest -lws2_32
|
ldflags=-ldl -lintl -lossaudio -ltest -lws2_32
|
||||||
dist=Makefile
|
dist=Makefile
|
||||||
|
|
||||||
[libtest]
|
[target::libtest]
|
||||||
type=library
|
type=library
|
||||||
sources=test.c
|
sources=test.c
|
||||||
depends=a.c,b.c
|
depends=a.c,b.c
|
||||||
install=$(LIBDIR)
|
install=$(LIBDIR)
|
||||||
|
|
||||||
[libs p a c e]
|
[target::libs p a c e]
|
||||||
type=library
|
type=library
|
||||||
sources=s p a c e.c
|
sources=s p a c e.c
|
||||||
depends=s p a c e.c
|
depends=s p a c e.c
|
||||||
|
|
|
@ -1,13 +1,12 @@
|
||||||
targets=libtest,libs p a c e
|
|
||||||
ldflags=-ldl -lintl -lossaudio -ltest -lws2_32
|
ldflags=-ldl -lintl -lossaudio -ltest -lws2_32
|
||||||
dist=Makefile
|
dist=Makefile
|
||||||
|
|
||||||
[libtest]
|
[target::libtest]
|
||||||
type=libtool
|
type=libtool
|
||||||
sources=test.c
|
sources=test.c
|
||||||
install=$(LIBDIR)
|
install=$(LIBDIR)
|
||||||
|
|
||||||
[libs p a c e]
|
[target::libs p a c e]
|
||||||
type=libtool
|
type=libtool
|
||||||
sources=s p a c e.c
|
sources=s p a c e.c
|
||||||
install=$(LIBDIR)
|
install=$(LIBDIR)
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
targets=object.o,object2.o,object3.o
|
|
||||||
dist=Makefile
|
dist=Makefile
|
||||||
|
|
||||||
[object.o]
|
[target::object.o]
|
||||||
type=object
|
type=object
|
||||||
sources=object.c
|
sources=object.c
|
||||||
install=$(LIBDIR)
|
install=$(LIBDIR)
|
||||||
|
@ -9,11 +8,11 @@ install=$(LIBDIR)
|
||||||
[object.c]
|
[object.c]
|
||||||
depends=a.c,b.c
|
depends=a.c,b.c
|
||||||
|
|
||||||
[object2.o]
|
[target::object2.o]
|
||||||
type=object
|
type=object
|
||||||
sources=object2.asm
|
sources=object2.asm
|
||||||
|
|
||||||
[object3.o]
|
[target::object3.o]
|
||||||
type=object
|
type=object
|
||||||
sources=object3.S
|
sources=object3.S
|
||||||
cppflags=-nostdinc
|
cppflags=-nostdinc
|
||||||
|
|
|
@ -1,13 +1,12 @@
|
||||||
targets=test,s p a c e
|
|
||||||
dist=Makefile
|
dist=Makefile
|
||||||
|
|
||||||
[test]
|
[target::test]
|
||||||
type=plugin
|
type=plugin
|
||||||
sources=test.c
|
sources=test.c
|
||||||
depends=a.c,b.c
|
depends=a.c,b.c
|
||||||
install=$(LIBDIR)/configure
|
install=$(LIBDIR)/configure
|
||||||
|
|
||||||
[s p a c e]
|
[target::s p a c e]
|
||||||
type=plugin
|
type=plugin
|
||||||
sources=s p a c e.c
|
sources=s p a c e.c
|
||||||
depends=s p a c e.c
|
depends=s p a c e.c
|
||||||
|
|
|
@ -1,69 +1,68 @@
|
||||||
subdirs=gtkdoc
|
subdirs=gtkdoc
|
||||||
targets=clint.log,coverage.log,distcheck.log,fixme.log,htmllint.log,phplint.log,pylint.log,shlint.log,template-test.md,tests.log,xmllint.log
|
|
||||||
dist=Makefile,binary/project.conf,binary/Makefile.Darwin,binary/Makefile.DeforaOS,binary/Makefile.NetBSD,binary/Makefile.Windows,command/project.conf,command/Makefile.NetBSD,config.sh,include/project.conf,include/Makefile.NetBSD,java/project.conf,java/Makefile.NetBSD,library/project.conf,library/Makefile.Darwin,library/Makefile.Linux,library/Makefile.NetBSD,library/Makefile.Windows,libtool/project.conf,libtool/Makefile.Darwin,libtool/Makefile.Linux,libtool/Makefile.NetBSD,libtool/Makefile.Windows,object/project.conf,object/Makefile.NetBSD,package/project.conf,package/Makefile.NetBSD,package/config.ent.NetBSD,package/config.h.NetBSD,package/config.sh.NetBSD,plugin/project.conf,plugin/Makefile.Darwin,plugin/Makefile.NetBSD,script/project.conf,script/Makefile.NetBSD,template.md.in,test.db,tests.sh,verilog/project.conf,verilog/Makefile.NetBSD
|
dist=Makefile,binary/project.conf,binary/Makefile.Darwin,binary/Makefile.DeforaOS,binary/Makefile.NetBSD,binary/Makefile.Windows,command/project.conf,command/Makefile.NetBSD,config.sh,include/project.conf,include/Makefile.NetBSD,java/project.conf,java/Makefile.NetBSD,library/project.conf,library/Makefile.Darwin,library/Makefile.Linux,library/Makefile.NetBSD,library/Makefile.Windows,libtool/project.conf,libtool/Makefile.Darwin,libtool/Makefile.Linux,libtool/Makefile.NetBSD,libtool/Makefile.Windows,object/project.conf,object/Makefile.NetBSD,package/project.conf,package/Makefile.NetBSD,package/config.ent.NetBSD,package/config.h.NetBSD,package/config.sh.NetBSD,plugin/project.conf,plugin/Makefile.Darwin,plugin/Makefile.NetBSD,script/project.conf,script/Makefile.NetBSD,template.md.in,test.db,tests.sh,verilog/project.conf,verilog/Makefile.NetBSD
|
||||||
|
|
||||||
#targets
|
#targets
|
||||||
[clint.log]
|
[target::clint.log]
|
||||||
type=script
|
type=script
|
||||||
script=../src/scripts/tests/clint.sh
|
script=../src/scripts/tests/clint.sh
|
||||||
enabled=0
|
enabled=0
|
||||||
depends=../src/scripts/tests/clint.sh
|
depends=../src/scripts/tests/clint.sh
|
||||||
|
|
||||||
[coverage.log]
|
[target::coverage.log]
|
||||||
type=script
|
type=script
|
||||||
script=../src/scripts/tests/coverage.sh
|
script=../src/scripts/tests/coverage.sh
|
||||||
enabled=0
|
enabled=0
|
||||||
depends=../src/scripts/tests/coverage.sh
|
depends=../src/scripts/tests/coverage.sh
|
||||||
|
|
||||||
[distcheck.log]
|
[target::distcheck.log]
|
||||||
type=script
|
type=script
|
||||||
script=../src/scripts/tests/distcheck.sh
|
script=../src/scripts/tests/distcheck.sh
|
||||||
enabled=0
|
enabled=0
|
||||||
depends=../src/scripts/tests/distcheck.sh
|
depends=../src/scripts/tests/distcheck.sh
|
||||||
|
|
||||||
[fixme.log]
|
[target::fixme.log]
|
||||||
type=script
|
type=script
|
||||||
script=../src/scripts/tests/fixme.sh
|
script=../src/scripts/tests/fixme.sh
|
||||||
enabled=0
|
enabled=0
|
||||||
depends=../src/scripts/tests/fixme.sh
|
depends=../src/scripts/tests/fixme.sh
|
||||||
|
|
||||||
[htmllint.log]
|
[target::htmllint.log]
|
||||||
type=script
|
type=script
|
||||||
script=../src/scripts/tests/htmllint.sh
|
script=../src/scripts/tests/htmllint.sh
|
||||||
enabled=0
|
enabled=0
|
||||||
depends=../src/scripts/tests/htmllint.sh
|
depends=../src/scripts/tests/htmllint.sh
|
||||||
|
|
||||||
[phplint.log]
|
[target::phplint.log]
|
||||||
type=script
|
type=script
|
||||||
script=../src/scripts/tests/phplint.sh
|
script=../src/scripts/tests/phplint.sh
|
||||||
enabled=0
|
enabled=0
|
||||||
depends=../src/scripts/tests/phplint.sh
|
depends=../src/scripts/tests/phplint.sh
|
||||||
|
|
||||||
[pylint.log]
|
[target::pylint.log]
|
||||||
type=script
|
type=script
|
||||||
script=../src/scripts/tests/pylint.sh
|
script=../src/scripts/tests/pylint.sh
|
||||||
enabled=0
|
enabled=0
|
||||||
depends=../src/scripts/tests/pylint.sh
|
depends=../src/scripts/tests/pylint.sh
|
||||||
|
|
||||||
[shlint.log]
|
[target::shlint.log]
|
||||||
type=script
|
type=script
|
||||||
script=../src/scripts/tests/shlint.sh
|
script=../src/scripts/tests/shlint.sh
|
||||||
enabled=0
|
enabled=0
|
||||||
depends=../src/scripts/data/pkgconfig.sh,../src/scripts/doc/docbook.sh,../src/scripts/doc/gtkdoc.sh,../src/scripts/doc/markdown.sh,../src/scripts/po/gettext.sh,../src/scripts/tests/clint.sh,../src/scripts/tests/coverage.sh,../src/scripts/tests/fixme.sh,../src/scripts/tests/htmllint.sh,../src/scripts/tests/phplint.sh,../src/scripts/tests/pylint.sh,../src/scripts/tests/shlint.sh,../src/scripts/tests/xmllint.sh,../src/scripts/tools/appbroker.sh,../src/scripts/tools/platform.sh,../src/scripts/tools/subst.sh,../src/scripts/tools/template.sh,tests.sh
|
depends=../src/scripts/data/pkgconfig.sh,../src/scripts/doc/docbook.sh,../src/scripts/doc/gtkdoc.sh,../src/scripts/doc/markdown.sh,../src/scripts/po/gettext.sh,../src/scripts/tests/clint.sh,../src/scripts/tests/coverage.sh,../src/scripts/tests/fixme.sh,../src/scripts/tests/htmllint.sh,../src/scripts/tests/phplint.sh,../src/scripts/tests/pylint.sh,../src/scripts/tests/shlint.sh,../src/scripts/tests/xmllint.sh,../src/scripts/tools/appbroker.sh,../src/scripts/tools/platform.sh,../src/scripts/tools/subst.sh,../src/scripts/tools/template.sh,tests.sh
|
||||||
|
|
||||||
[template-test.md]
|
[target::template-test.md]
|
||||||
type=script
|
type=script
|
||||||
script=../src/scripts/tools/template.sh
|
script=../src/scripts/tools/template.sh
|
||||||
flags=-O DATABASEDIR=.
|
flags=-O DATABASEDIR=.
|
||||||
depends=template.md.in,test.db,../src/scripts/tools/template.sh,../config.sh
|
depends=template.md.in,test.db,../src/scripts/tools/template.sh,../config.sh
|
||||||
|
|
||||||
[tests.log]
|
[target::tests.log]
|
||||||
type=script
|
type=script
|
||||||
script=./tests.sh
|
script=./tests.sh
|
||||||
enabled=0
|
enabled=0
|
||||||
depends=$(OBJDIR)../tools/configure$(EXEEXT),binary/project.conf,binary/Makefile.Darwin,binary/Makefile.DeforaOS,binary/Makefile.NetBSD,binary/Makefile.Windows,command/project.conf,command/Makefile.NetBSD,include/project.conf,include/Makefile.NetBSD,java/project.conf,java/Makefile.NetBSD,library/project.conf,library/Makefile.Darwin,library/Makefile.Linux,library/Makefile.NetBSD,library/Makefile.Windows,libtool/project.conf,libtool/Makefile.Darwin,libtool/Makefile.Linux,libtool/Makefile.NetBSD,libtool/Makefile.Windows,object/project.conf,object/Makefile.NetBSD,package/project.conf,package/Makefile.NetBSD,package/config.ent.NetBSD,package/config.h.NetBSD,package/config.sh.NetBSD,plugin/project.conf,plugin/Makefile.Darwin,plugin/Makefile.NetBSD,script/project.conf,script/Makefile.NetBSD,verilog/project.conf,verilog/Makefile.NetBSD,tests.sh
|
depends=$(OBJDIR)../tools/configure$(EXEEXT),binary/project.conf,binary/Makefile.Darwin,binary/Makefile.DeforaOS,binary/Makefile.NetBSD,binary/Makefile.Windows,command/project.conf,command/Makefile.NetBSD,include/project.conf,include/Makefile.NetBSD,java/project.conf,java/Makefile.NetBSD,library/project.conf,library/Makefile.Darwin,library/Makefile.Linux,library/Makefile.NetBSD,library/Makefile.Windows,libtool/project.conf,libtool/Makefile.Darwin,libtool/Makefile.Linux,libtool/Makefile.NetBSD,libtool/Makefile.Windows,object/project.conf,object/Makefile.NetBSD,package/project.conf,package/Makefile.NetBSD,package/config.ent.NetBSD,package/config.h.NetBSD,package/config.sh.NetBSD,plugin/project.conf,plugin/Makefile.Darwin,plugin/Makefile.NetBSD,script/project.conf,script/Makefile.NetBSD,verilog/project.conf,verilog/Makefile.NetBSD,tests.sh
|
||||||
|
|
||||||
[xmllint.log]
|
[target::xmllint.log]
|
||||||
type=script
|
type=script
|
||||||
script=../src/scripts/tests/xmllint.sh
|
script=../src/scripts/tests/xmllint.sh
|
||||||
enabled=0
|
enabled=0
|
||||||
|
|
|
@ -1,4 +1,3 @@
|
||||||
targets=test,disabled,phony,s p a c e s,s p a c e s 2
|
|
||||||
dist=Makefile
|
dist=Makefile
|
||||||
|
|
||||||
[test]
|
[test]
|
||||||
|
@ -7,13 +6,13 @@ script=./script.sh
|
||||||
prefix=/somewhere/else
|
prefix=/somewhere/else
|
||||||
install=/somewhere/else/again
|
install=/somewhere/else/again
|
||||||
|
|
||||||
[disabled]
|
[target::disabled]
|
||||||
type=script
|
type=script
|
||||||
script=./script.sh
|
script=./script.sh
|
||||||
depends=a.c,b.c
|
depends=a.c,b.c
|
||||||
enabled=0
|
enabled=0
|
||||||
|
|
||||||
[phony]
|
[target::phony]
|
||||||
type=script
|
type=script
|
||||||
script=./script.sh
|
script=./script.sh
|
||||||
flags=-O TARGET=phony
|
flags=-O TARGET=phony
|
||||||
|
@ -21,14 +20,14 @@ depends=a.c,b.c
|
||||||
phony=1
|
phony=1
|
||||||
install=
|
install=
|
||||||
|
|
||||||
[s p a c e s]
|
[target::s p a c e s]
|
||||||
type=script
|
type=script
|
||||||
script=./s c r i p t.sh
|
script=./s c r i p t.sh
|
||||||
depends=$(OBJDIR)s p a c e s 2
|
depends=$(OBJDIR)s p a c e s 2
|
||||||
phony=1
|
phony=1
|
||||||
install=
|
install=
|
||||||
|
|
||||||
[s p a c e s 2]
|
[target::s p a c e s 2]
|
||||||
type=script
|
type=script
|
||||||
script=./s c r i p t.sh
|
script=./s c r i p t.sh
|
||||||
install=
|
install=
|
||||||
|
|
|
@ -1,21 +1,20 @@
|
||||||
targets=top.vhdl,top.vvp,top.fpga,s p a c e.fpga
|
|
||||||
verilog=iverilog
|
verilog=iverilog
|
||||||
|
|
||||||
[top.fpga]
|
[target::top.fpga]
|
||||||
type=object
|
type=object
|
||||||
vflags=-tfpga
|
vflags=-tfpga
|
||||||
sources=top.v
|
sources=top.v
|
||||||
|
|
||||||
[top.vhdl]
|
[target::top.vhdl]
|
||||||
type=object
|
type=object
|
||||||
vflags=-tvhdl
|
vflags=-tvhdl
|
||||||
sources=top.v
|
sources=top.v
|
||||||
|
|
||||||
[top.vvp]
|
[target::top.vvp]
|
||||||
type=object
|
type=object
|
||||||
sources=top.v
|
sources=top.v
|
||||||
|
|
||||||
[s p a c e.fpga]
|
[target::s p a c e.fpga]
|
||||||
type=object
|
type=object
|
||||||
vflags=-tfpga
|
vflags=-tfpga
|
||||||
sources=s p a c e.v
|
sources=s p a c e.v
|
||||||
|
|
Loading…
Reference in New Issue
Block a user