]> git.llucax.com Git - z.facultad/75.06/emufs.git/blob - emufs/Makefile
Insertar B+ en teoria fully working con encadenamiento en hojas y toda la mar en...
[z.facultad/75.06/emufs.git] / emufs / Makefile
1 CFLAGS=-Wall -g -I/usr/include/libxml2 -DDEBUG
2 LDFLAGS= -lm -lmenu -lncurses -lxml2
3 #CFLAGS=-Wall -g -pedantic -DDEBUG 
4 #LDFLAGS=-lm
5
6 EMUFS_COMMON=emufs.o tipo1.o tipo2.o tipo3.o idx.o did.o fsc.o common.o indices.o indice_b.o b_plus.o
7
8 TARGETS=libemufs.a tipo1_main tipo2_main tipo3_main b_plus_test
9
10 all: $(TARGETS)
11
12 tipo1_main: tipo1_main.o $(EMUFS_COMMON)
13
14 tipo2_main: tipo2_main.o $(EMUFS_COMMON)
15
16 tipo3_main: tipo3_main.o $(EMUFS_COMMON)
17
18 b_plus_test: b_plus_test.o b_plus.o
19
20 #b_plus_test: b_plus_test.o b_plus.o indices.o emufs.o
21
22 #b_test: b_test.o indice_b.o
23
24 libemufs.a: $(EMUFS_COMMON)
25         $(AR) cru libemufs.a $(EMUFS_COMMON)
26
27 clean:
28         @$(RM) -fv *.o articulos.* $(TARGETS)