a new Makefile entry, so a Distribution is possible!
[libfirm] / ir / ir / Makefile
1 # Hey, emacs, this is a -*- makefile -*-
2 #
3 # Copyright (C) 1998 - 2000 by Universitaet Karlsruhe
4 # All rights reserved.
5 # Author: Goetz Lindenmaier
6 #
7 # Makefile for ir -- intermediate representation of the program
8
9 CXX         = gcc
10 CFLAGS      = -pipe -Wall # -ansi -pedantic
11 CXXFLAGS    = # -g
12 COPTFLAGS   = -O3
13 LDFLAGS     =
14 DEPENDFLAGS = -M
15 LIBPATH     =
16 LIBS        =
17 X_LIBS      =
18 INCLUDES    = -I../adt -I../common -I../debug -I../ident -I../include \
19               -I../ir -I../tr -I../tv
20 X_INCLUDES  =
21
22 SHELL       = /bin/sh
23 MAKE        = /usr/bin/make
24
25 DISTRIBMEMBERS   = ircons.m irdump.m irflag.m irgmod.m irgraph.m irgopt.m \
26            irgwalk.m irmode.m irnode.m irop.m iropt.m irprog.m irvrfy.m
27 MEMBERS = $(DISTRIBMEMBERS)
28
29 CFILES = $(MEMBERS:.m=.c)
30
31 HFILES = $(MEMBERS:.m=.h)
32 HFILES +=  array.h common.h cookies.h debug.h entity.h gmp.h  \
33            host.h ident.h label.h misc.h obst.h pdeq.h pset.h \
34            set.h tune.h tv.h type.h xprintf.h xp_help.h irnode2.h
35
36 DISTRIB = $(DISTRIBMEMBERS:.m=.h)
37
38 OFILES = $(MEMBERS:%.m=../objects/%.o)
39
40 DFILES = $(MEMBERS:.m=.d)
41
42 TARGET = all
43
44 .PHONY: default all clean realclean install depend
45 .SUFFIXES: .d .h .c .o
46 .DEFAULT: $(TARGET)
47 .SILENT: $(DFILES) clean  # hides output
48
49
50 $(TARGET): $(DFILES) $(OFILES)
51
52 # the preprocessor computes the dependencies and saves them to a file
53 # the sed script adds the path to ../objects and file.d to the dependency.
54 %.d:    %.c
55         $(SHELL) -ec '$(CXX) $(DEPENDFLAGS) $(INCLUDES) $(X_INCLUDES) $< | sed '\''s/\($*\)\.o[ :]*/\.\.\/objects\/\1.o $@ : /g'\'' > $@'
56
57
58 ../objects/%.o: %.c
59         $(CXX) $(CFLAGS) $(CXXFLAGS) $(COPTFLAGS) $(INCLUDES) $(X_INCLUDES) -c $< -o $@
60
61 lib:
62         cp $(DISTRIB) ../../include
63
64 clean:
65         rm -f $(OFILES) $(DFILES)
66
67 realclean:      clean
68         rm -f $(TARGET) *.flc TAGS
69
70 -include $(DFILES)