CFLAGS= -g -O2 -Wall

OBJECTS= main.o popen.o execve3.o
TARGET= tracertexp
all: $(TARGET)
	@echo "done"
	@echo "./tracertexp and hope the force is with you"
$(TARGET): $(OBJECTS)
	gcc -o $(TARGET) $(OBJECTS)
clean:
	rm -f $(OBJECTS) $(TARGET)  *.c~ Makefile~ *.h~ *.S~

