view Makefile.in @ 1106:c9137606733a

Change location of dynamic libraries
author Adam Chlipala <adamc@hcoop.net>
date Thu, 31 Dec 2009 16:12:13 -0500
parents 72670131dace
children 2f53e0deffb3
line wrap: on
line source
BIN      := @BIN@
LIB      := @LIB@
INCLUDE  := @INCLUDE@
SITELISP := @SITELISP@

LIB_UR   := $(LIB)/ur
LIB_C    := $(LIB)/c
LIB_JS   := $(LIB)/js

LD_MAJOR := 1
LD_MINOR := 0

all: smlnj mlton c

.PHONY: all smlnj mlton c clean install package

smlnj: src/urweb.cm
mlton: bin/urweb

OBJS := memmem mhash urweb request queue http cgi fastcgi
SOS  := urweb urweb_http urweb_cgi urweb_fastcgi
c: $(OBJS:%=lib/c/%.o) $(SOS:%=lib/c/lib%.so.$(LD_MAJOR).$(LD_MINOR))

clean:
	rm -f src/*.mlton.grm.* src/*.mlton.lex.* \
		src/urweb.cm src/urweb.mlb \
		lib/c/*.o lib/c/*.so.*
	rm -rf .cm src/.cm

lib/c/%.do: src/c/%.c include/*.h
	gcc -fPIC -Wimplicit -O3 -I include -c $< -o $@ $(CFLAGS)

lib/c/%.o: src/c/%.c include/*.h
	gcc -Wimplicit -O3 -I include -c $< -o $@ $(CFLAGS)

URWEB_OS := memmem urweb queue request mhash
lib/c/liburweb.so.$(LD_MAJOR).$(LD_MINOR): $(URWEB_OS:%=lib/c/%.do)
	gcc -shared -Wl,-soname,liburweb.so.$(LD_MAJOR) -o $@ $^

lib/c/liburweb_%.so.$(LD_MAJOR).$(LD_MINOR): lib/c/%.do
	gcc -shared -Wl,-soname,liburweb_$*.so.$(LD_MAJOR) -o $@ $^

src/urweb.cm: src/prefix.cm src/sources
	cat src/prefix.cm src/sources \
	>src/urweb.cm

src/urweb.mlb: src/prefix.mlb src/sources src/suffix.mlb
	cat src/prefix.mlb src/sources src/suffix.mlb \
	| sed 's/^\(.*\).grm$$/\1.mlton.grm.sig:\1.mlton.grm.sml/; y/:/\n/' \
	| sed 's/^\(.*\).lex$$/\1.mlton.lex.sml/' \
	>$@

%.mlton.lex: %.lex
	cp $< $@
%.mlton.grm: %.grm
	cp $< $@

%.mlton.lex.sml: %.mlton.lex
	mllex $<

%.mlton.grm.sig %.mlton.grm.sml: %.mlton.grm
	mlyacc $<

MLTON := mlton

ifdef DEBUG
	MLTON += -const 'Exn.keepHistory true'
endif

ifdef PROFILE
	MLTON += -profile $(PROFILE)
endif

bin/urweb: src/compiler.mlb src/urweb.mlb src/*.sig src/*.sml \
		src/urweb.mlton.lex.sml \
		src/urweb.mlton.grm.sig src/urweb.mlton.grm.sml
	$(MLTON) -output $@ src/compiler.mlb

install:
	mkdir -p $(BIN)
	cp bin/urweb $(BIN)/
	mkdir -p $(LIB_UR)
	cp lib/ur/*.urs $(LIB_UR)/
	cp lib/ur/*.ur $(LIB_UR)/
	mkdir -p $(LIB_C)
	cp lib/c/*.o $(LIB_C)/
	cp lib/c/*.so.$(LD_MAJOR).$(LD_MINOR) $(LIB)/..
	mkdir -p $(LIB_JS)
	cp lib/js/*.js $(LIB_JS)/
	mkdir -p $(INCLUDE)
	cp include/*.h $(INCLUDE)/
	mkdir -p $(SITELISP)
	cp src/elisp/*.el $(SITELISP)/
	ln -sf liburweb.so.$(LD_MAJOR) $(LIB)/../liburweb.so
	ln -sf liburweb_http.so.$(LD_MAJOR) $(LIB)/../liburweb_http.so
	ln -sf liburweb_cgi.so.$(LD_MAJOR) $(LIB)/../liburweb_cgi.so
	ln -sf /liburweb_fastcgi.so.$(LD_MAJOR) $(LIB)/../liburweb_fastcgi.so
	ldconfig

package:
	hg archive -t tgz -X tests /tmp/urweb.tgz