191d8a2df6591ec3302a2e01efc984bf85eea164
[cacao.git] / toolbox / Makefile
1 ################################################################################
2 #                 Makefile for the program independent toolbox                 #
3 ################################################################################
4 #
5 # Copyright (c) 1997 A. Krall, R. Grafl, M. Gschwind, M. Probst
6 #
7 # See the file COPYRIGHT for information on usage and disclaimer of warranties
8 #
9 # Authors: Reinhard Grafl      EMAIL: cacao@complang.tuwien.ac.at
10 #
11 # Last Change: 1997/10/30
12 #
13 ################################################################################
14
15 OBJECTS = memory.o loging.o chain.o tree.o list.o
16
17 toolbox.a: $(OBJECTS) Makefile
18         rm -f toolbox.a
19         ar qcs toolbox.a $(OBJECTS)
20         
21 memory.o: memory.c memory.h loging.h
22 loging.o: loging.c loging.h
23 chain.o: chain.c chain.h memory.h
24 tree.o: tree.c tree.h memory.h
25 list.o: list.c list.h
26
27 clean: 
28         rm -f *.o *.a