From: Leandro Lucarella Date: Tue, 13 Apr 2004 16:14:22 +0000 (+0000) Subject: Un retoque para mejor portabilidad :) X-Git-Tag: svn_import_r684~501 X-Git-Url: https://git.llucax.com/z.facultad/75.06/emufs.git/commitdiff_plain/240a27b93633ba4d6eb1420079576b6c90e08ce6?ds=inline Un retoque para mejor portabilidad :) --- diff --git a/emufs/Makefile b/emufs/Makefile index f40c7a9..83cf49d 100644 --- a/emufs/Makefile +++ b/emufs/Makefile @@ -12,7 +12,7 @@ tipo2_main: tipo2_main.o $(EMUFS_COMMON) tipo3_main: tipo3_main.o $(EMUFS_COMMON) libemufs.a: $(EMUFS_COMMON) - ar cru libemufs.a $(EMUFS_COMMON) + $(AR) cru libemufs.a $(EMUFS_COMMON) clean: - @rm -fv *.o tipo1_test tipo2_main tipo3_main articulos.* + @$(RM) -fv *.o tipo1_test tipo2_main tipo3_main articulos.* diff --git a/emufs_gui/Makefile b/emufs_gui/Makefile index 01549cd..c7dc232 100644 --- a/emufs_gui/Makefile +++ b/emufs_gui/Makefile @@ -6,4 +6,4 @@ all: gui gui: form.c gui.c articulos.c facturas.c registros.c ../emufs/libemufs.a clean: - @rm -vf *.o gui + @$(RM) -vf *.o gui