X-Git-Url: https://git.llucax.com/z.facultad/75.06/emufs.git/blobdiff_plain/8b7ea92d2c1f42aaf4e1f5ce00b178bc4309edad..e42e23b74408ae54e9ae25b7cadadf45d80c34e1:/emufs/Makefile?ds=inline diff --git a/emufs/Makefile b/emufs/Makefile index 7c7f81e..6721482 100644 --- a/emufs/Makefile +++ b/emufs/Makefile @@ -3,7 +3,9 @@ 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 -all: libemufs.a tipo1_main tipo2_main tipo3_main b_test +TARGETS=libemufs.a tipo1_main tipo2_main tipo3_main b_test + +all: $(TARGETS) tipo1_main: tipo1_main.o $(EMUFS_COMMON) @@ -20,4 +22,4 @@ libemufs.a: $(EMUFS_COMMON) $(AR) cru libemufs.a $(EMUFS_COMMON) clean: - @$(RM) -fv *.o tipo1_main tipo2_main tipo3_main articulos.* + @$(RM) -fv *.o articulos.* $(TARGETS)