CFLAGS := -g -Wall

simple_process: simple_process.o

install: simple_process
	cp -f simple_process ../../bin

clean:
	rm -f simple_process *.o
