X-Git-Url: https://git.llucax.com/z.facultad/75.06/jacu.git/blobdiff_plain/de5da6745aa448b96eee01fbd9df0575629678b9..d02adaeecaf5e03a84fecc369105cb618a3eb046:/src/mtf/Makefile diff --git a/src/mtf/Makefile b/src/mtf/Makefile index ac6a010..4045b2c 100644 --- a/src/mtf/Makefile +++ b/src/mtf/Makefile @@ -1,74 +1,79 @@ -# Makefile de ejemplo para C++ -# -# Creado: jue abr 15 15:34:19 ART 2004 +#---------------------------------------------------------------------------- +# jacu +#---------------------------------------------------------------------------- +# This file is part of jacu. # -# Copyleft 2004 - Leandro Lucarella, Bajo licencia GPL [http://www.gnu.org/] +# jacu is free software; you can redistribute it and/or modify it under the +# terms of the GNU General Public License as published by the Free Software +# Foundation; either version 2 of the License, or (at your option) any later +# version. +# +# jacu is distributed in the hope that it will be useful, but WITHOUT ANY +# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more +# details. +# +# You should have received a copy of the GNU General Public License along +# with jacu; if not, write to the Free Software Foundation, Inc., 59 Temple +# Place, Suite 330, Boston, MA 02111-1307 USA +#---------------------------------------------------------------------------- +# Creado: jue jun 17 00:41:52 ART 2004 +# Autores: Leandro Lucarella +#---------------------------------------------------------------------------- +# +# $Id: bufford.c 624 2004-05-30 20:18:04Z llucare $ # -# CONFIGURACION -################ - -# Nombre del ejecutable. -target = mtf - -# Extensión de los archivos a compilar (c para C, cpp o cc o cxx para C++). -extension = c - -# Archivos con el código fuente que componen el ejecutable. Si no se especifica, -# toma todos los archivos con la extensión mencionada. Para especificar hay que -# descomentar la línea (quitarle el '#' del principio). -# NOTA: No poner cabeceras (.h). -#fuentes = entrada.cpp - -# Si es un programa GTK+, descomentá (quitale el '#' a) la siguiente línea. -#gtk = si - - -# CONFIGURACION "AVANZADA" -########################### - -# Opciones para el compilador C. -#CFLAGS = -Wall -ggdb -ansi -pedantic -DDEBUG -CFLAGS = -Wall -O3 -ansi -pedantic -DNDEBUG -g - -# Opciones para el compilador C++. -#CXXFLAGS = $(CFLAGS) -fno-inline -CXXFLAGS = $(CFLAGS) - - -# VARIABLES CALCULADAS A PARTIR DE LA CONFIGURACION -#################################################### - -# Agrego flags y libs de GTK+ de ser necesario. -ifdef gtk -CFLAGS += $(shell pkg-config --cflags gtk+-2.0) -CXXFLAGS += $(shell pkg-config --cflags gtk+-2.0) -LDFLAGS += $(shell pkg-config --libs gtk+-2.0) -endif - -# Uso enlazador de c++ si es código no C. -ifeq ($(extension), c) -enlazador = $(CC) -else -enlazador = $(CXX) -endif - -# Si no especifica archivos, tomo todos. -fuentes ?= $(wildcard *.$(extension)) - +TARGETS=main mtof +COMMON=mtf.o +SRCS=mtf.c main.c mtof.c -# REGLAS -######### +#CFLAGS=-O3 -Wall -DNDEBUG +CFLAGS=-ggdb -Wall -DDEBUG -.PHONY: all clean +all: $(TARGETS) -all: $(target) +main: $(COMMON) main.o -o_files = $(patsubst %.$(extension),%.o,$(fuentes)) +mtof: $(COMMON) mtof.o -$(target): $(o_files) - $(enlazador) $(LDFLAGS) $(o_files) $(LOADLIBES) $(LDLIBS) -o $(target) +depend: + makedepend -- $(CFLAGS) -- $(SRCS) clean: - @$(RM) -fv *.o $(target) - + @$(RM) -f *.o $(TARGETS) + +.PHONY: all clean depend + +# DO NOT DELETE + +mtf.o: mtf.h /usr/include/stdio.h /usr/include/features.h +mtf.o: /usr/include/sys/cdefs.h /usr/include/gnu/stubs.h +mtf.o: /usr/lib/gcc-lib/i486-linux/3.3.4/include/stddef.h +mtf.o: /usr/include/bits/types.h /usr/include/bits/wordsize.h +mtf.o: /usr/include/bits/typesizes.h /usr/include/libio.h +mtf.o: /usr/include/_G_config.h /usr/include/wchar.h +mtf.o: /usr/include/bits/wchar.h /usr/include/gconv.h +mtf.o: /usr/lib/gcc-lib/i486-linux/3.3.4/include/stdarg.h +mtf.o: /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h +mtf.o: /usr/include/stdlib.h +main.o: /usr/include/stdio.h /usr/include/features.h /usr/include/sys/cdefs.h +main.o: /usr/include/gnu/stubs.h +main.o: /usr/lib/gcc-lib/i486-linux/3.3.4/include/stddef.h +main.o: /usr/include/bits/types.h /usr/include/bits/wordsize.h +main.o: /usr/include/bits/typesizes.h /usr/include/libio.h +main.o: /usr/include/_G_config.h /usr/include/wchar.h +main.o: /usr/include/bits/wchar.h /usr/include/gconv.h +main.o: /usr/lib/gcc-lib/i486-linux/3.3.4/include/stdarg.h +main.o: /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h mtf.h +main.o: /usr/include/stdlib.h /usr/include/string.h +mtof.o: /usr/include/stdio.h /usr/include/features.h /usr/include/sys/cdefs.h +mtof.o: /usr/include/gnu/stubs.h +mtof.o: /usr/lib/gcc-lib/i486-linux/3.3.4/include/stddef.h +mtof.o: /usr/include/bits/types.h /usr/include/bits/wordsize.h +mtof.o: /usr/include/bits/typesizes.h /usr/include/libio.h +mtof.o: /usr/include/_G_config.h /usr/include/wchar.h +mtof.o: /usr/include/bits/wchar.h /usr/include/gconv.h +mtof.o: /usr/lib/gcc-lib/i486-linux/3.3.4/include/stdarg.h +mtof.o: /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h mtf.h +mtof.o: /usr/include/stdlib.h /usr/include/string.h