X-Git-Url: https://gapil.gnulinux.it/gitweb/?a=blobdiff_plain;f=sources%2FMakefile;h=e2c933175b2afb03f70d514e8d5be5455c11e794;hb=7b63698a1ef54d7274e2c14065d62260644abde0;hp=868ff584e07ed477e06cf5afa23d60423c322e39;hpb=c1b22636d04ef04d31842b40878c83fa63ebe739;p=gapil.git diff --git a/sources/Makefile b/sources/Makefile index 868ff58..e2c9331 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,15 @@ OBJ = SockRead.o SockWrite.o FINAL = forktest errcode echo echod daytimed iterdaytimed daytime testfopen \ testren fortune fortuned +flock: Flock.c + $(CC) $^ -o $@ + +mqfortune: MQFortuneClient.c + $(CC) $^ -o $@ + +mqfortuned: MQFortuneServer.c FortuneParse.c + $(CC) $^ -o $@ + fortune: FortuneClient.c $(CC) $^ -o $@