|
Revision 8290, 420 bytes
(checked in by patrickh, 7 years ago)
|
Lame attempt to get this working within a build directory. There
really isn't much point in using it that way, though…
|
- Property svn:eol-style set to
native
- Property svn:keywords set to
Author Date Id Revision
|
| Line | |
|---|
| 1 |
ifdef NSPR |
|---|
| 2 |
CFG_ARGS = --with-nspr=$(NSPR) |
|---|
| 3 |
endif |
|---|
| 4 |
|
|---|
| 5 |
ifdef prefix |
|---|
| 6 |
CFG_ARGS += --prefix=$(prefix) |
|---|
| 7 |
endif |
|---|
| 8 |
|
|---|
| 9 |
WRKDIR = $(shell pwd) |
|---|
| 10 |
SRCDIR ?= . |
|---|
| 11 |
|
|---|
| 12 |
LIBIDL = $(SRCDIR)/external/Equator/libIDL/libIDL-0.6.8 |
|---|
| 13 |
EQ_VJ = $(SRCDIR)/external/Equator/vj_standalone |
|---|
| 14 |
|
|---|
| 15 |
dso-bootstrap: |
|---|
| 16 |
cd $(LIBIDL) && ./configure $(CFG_ARGS) |
|---|
| 17 |
cd $(LIBIDL) && $(MAKE) clean all |
|---|
| 18 |
cd $(EQ_VJ) && ./configure $(CFG_ARGS) |
|---|
| 19 |
cd $(EQ_VJ) && $(MAKE) clobber buildme |
|---|