]> git.llucax.com Git - z.facultad/75.06/emufs.git/blob - emufs/Makefile
Cambios superfluos que hice mientras revisaba el codigo.
[z.facultad/75.06/emufs.git] / emufs / Makefile
1 CFLAGS=-Wall -g -ansi -pedantic -DDEBUG 
2 LDFLAGS=-lm
3
4 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
5
6 TARGETS=libemufs.a tipo1_main tipo2_main tipo3_main b_test
7
8 all: $(TARGETS)
9
10 tipo1_main: tipo1_main.o $(EMUFS_COMMON)
11
12 tipo2_main: tipo2_main.o $(EMUFS_COMMON)
13
14 tipo3_main: tipo3_main.o $(EMUFS_COMMON)
15
16 b_plus_test: b_plus_test.o $(EMUFS_COMMON)
17 #b_plus_test: b_plus_test.o b_plus.o indices.o emufs.o
18
19 #b_test: b_test.o indice_b.o
20
21 libemufs.a: $(EMUFS_COMMON)
22         $(AR) cru libemufs.a $(EMUFS_COMMON)
23
24 clean:
25         @$(RM) -fv *.o articulos.* $(TARGETS)