X-Git-Url: https://gapil.gnulinux.it/gitweb/?a=blobdiff_plain;f=sources%2FMakefile;h=1704f20cc9cd1c6841f0f5d360a222aec9e55e9d;hb=69f0eebce66fc36189698b2469a6008520b9e6c8;hp=cd22c1406c2b16a9f8bc3f9e922741972650bf9c;hpb=6c8d59152cff88b5835eeb749445148bb3546a5b;p=gapil.git diff --git a/sources/Makefile b/sources/Makefile index cd22c14..1704f20 100644 --- a/sources/Makefile +++ b/sources/Makefile @@ -2,7 +2,7 @@ # Simple Makefile to build examples # # C flags -CC=gcc +CC=gcc -DDEBUG CFLAGS= -Wall -g CFLADJ=-c @@ -11,10 +11,16 @@ OBJ = SockRead.o SockWrite.o FINAL = forktest errcode echo echod daytimed iterdaytimed daytime testfopen \ testren fortune fortuned +mqfortune: MQFortuneClient.c + $(CC) $^ -o $@ + +mqfortuned: MQFortuneServer.c FortuneParse.c + $(CC) $^ -o $@ + fortune: FortuneClient.c $(CC) $^ -o $@ -fortuned: FortuneServer.c FortuneParse.c +fortuned: FortuneServer.c FortuneParse.c $(CC) $^ -o $@ barcode: BarCode.c @@ -77,14 +83,3 @@ clean: rm -f *.o rm -f prova* rm -f output* - - - - - - - - - - -