CC = gcc -Wall -g MAKE = make all: dvd_udf.o .PHONY : all dvd_udf.o: dvd_udf.c dvd_udf.h $(CC) -c dvd_udf.c .PHONY : clean clean: rm -f dvd_udf.o