# Toutes ces variables de makefile sont indispensables, car peuvent 
#  varier d'un syste`me a` l'autre.

# Pour la compilation C
CFLAGS=-O
LIB=
CX11FLAGS= -I../../common -I../virbitmap/X11 -Dx11r2

# Pour la compilation Lisp
CMDDIR=/usr/local/bin
COMPILER=$(CMDDIR)/complice

# Pour savoir pour qui on travaille
SYSTEM=sun

all: x11.lo

x11.lo: x11.ll x11.lm 
	$(COMPILER)  \
		-e '(de getglobal (s) 1)' \
		x11

../../$(SYSTEM)/o/x11.o: x11.c
	$(CC) $(CFLAGS) $(CX11FLAGS) $(LIB) -c x11.c 
	mv $(@F) ../../$(SYSTEM)/o