X-Git-Url: https://gapil.gnulinux.it/gitweb/?p=gapil.git;a=blobdiff_plain;f=sources%2FMakefile;h=7ce1d44acdcdb9081d4c9d5a472aa7f9e0aaf0bf;hp=dd605131addd66556779dc7cf52125702daea5d3;hb=7b5118a8c6ff15e5fcdc1a70a27ead7fcd35830b;hpb=5283816ce55d9625355104e745a1964287605e1f diff --git a/sources/Makefile b/sources/Makefile index dd60513..7ce1d44 100644 --- a/sources/Makefile +++ b/sources/Makefile @@ -8,7 +8,15 @@ CFLADJ=-c OBJ = SockRead.o SockWrite.o -all: forktest errcode echo echod daytimed iterdaytimed daytime +FINAL = forktest errcode echo echod daytimed iterdaytimed daytime testfopen \ + testren + + +getparam: getparam.c + $(CC) $(CFLAGS) $^ -o $@ + +all: $(FINAL) + testfopen: test_fopen.c $(CC) $(CFLAGS) $^ -o $@ @@ -40,13 +48,22 @@ daytime: SimpleDaytimeTCPClient.c $(OBJ): wrappers.h +# Macro per la generazione della tarball dei sorgenti +package: clean gapil_source.tgz + + +gapil_source.tgz: + tar --exclude=CVS -cvz . -f $@ + mv $@ .. + .PHONY : clean clean: - rm -f daytime iterdaytimed daytimed echod echo errcode forktest + rm -f $(FINAL) rm -f *~ rm -f *.o - + rm -f prova* + rm -f output*