X-Git-Url: https://git.llucax.com/z.facultad/75.06/emufs.git/blobdiff_plain/d4c259b024d7aa4b64f8727e619a65688d43c798..4a18f94108cddb75f174fd814079aa032f15997d:/emufs/Makefile?ds=sidebyside diff --git a/emufs/Makefile b/emufs/Makefile index 2dbe9e2..ed5bd32 100644 --- a/emufs/Makefile +++ b/emufs/Makefile @@ -1,11 +1,16 @@ -CFLAGS=-Wall -g -pedantic -DDEBUG -LDFLAGS=-lm +CFLAGS=-Wall -g -I/usr/include/libxml2 -DDEBUG +LDFLAGS= -lm -lmenu -lncurses -lxml2 +#CFLAGS=-Wall -g -pedantic -DDEBUG +#LDFLAGS=-lm -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 +EMUFS_COMMON=emufs.o tipo1.o tipo2.o tipo3.o idx.o did.o fsc.o common.o indices.o indice_b.o indice_bplus.o -TARGETS=libemufs.a tipo1_main tipo2_main tipo3_main b_plus_test +TARGETS=libemufs.a tipo1_main tipo2_main tipo3_main b_plus_test tipo1_bplus_main tipo3_bplus_main all: $(TARGETS) + cd external_sort && make + +indice_b.o: indice_b.c indice_b_asc.c tipo1_main: tipo1_main.o $(EMUFS_COMMON) @@ -13,7 +18,11 @@ tipo2_main: tipo2_main.o $(EMUFS_COMMON) tipo3_main: tipo3_main.o $(EMUFS_COMMON) -b_plus_test: b_plus_test.o b_plus.o +b_plus_test: b_plus_test.o $(EMUFS_COMMON) + +tipo1_bplus_main: tipo1_bplus_main.o $(EMUFS_COMMON) + +tipo3_bplus_main: tipo3_bplus_main.o $(EMUFS_COMMON) #b_plus_test: b_plus_test.o b_plus.o indices.o emufs.o @@ -24,3 +33,5 @@ libemufs.a: $(EMUFS_COMMON) clean: @$(RM) -fv *.o articulos.* $(TARGETS) + cd external_sort && make clean +