#You may wish to add -DNO_UNISTD and -DNO_SYSTEM to CFLAGS if
#your system lacks the /usr/include/unistd.h header file
#or the system() function, respectively.

CFLAGS=

all: recupe_val capture

recupe_val: cgic.o recupe_val.o
	gcc cgic.o recupe_val.o -o recupe_val

capture: cgic.o capture.o
	gcc cgic.o capture.o -o capture


