Here are some examples of pattern rules:
%.o: %.c
$(CC) -c $< -o $@
frammis cooker: frammis.o cooker.o
$(CC) -o $@ $^
clean:
rm -f *.o frammis cooker
This uses implicit pattern rules to compile .c files to .o, links the objects into the executables frammis and cooker, and defines a clean target to remove the object and executable files. The % wildcard allows make to recognize common filename patterns and apply the appropriate compilation/linking rules.