X-Git-Url: https://gapil.gnulinux.it/gitweb/?p=gapil.git;a=blobdiff_plain;f=sources%2FMakefile;h=1704f20cc9cd1c6841f0f5d360a222aec9e55e9d;hp=868ff584e07ed477e06cf5afa23d60423c322e39;hb=ee350fdc6822ea17657d0e1598faa3e56c8d6e9b;hpb=9bb8146d97c05e1be51c66fcf94aec2ede1f5971 diff --git a/sources/Makefile b/sources/Makefile index 868ff58..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,6 +11,12 @@ 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 $@