CC=gcc CFLAGS=-Wall STC=stc-fcntl .PHONY: test test: $(STC) ./$(STC) $(STC): $(STC).c $(CC) $(CFLAGS) -o $@ $^ .PHONY: clean clean: rm -f $(STC) -rm -f /tmp/fcntl*