CFLAGS = -g EXT = .exe PROGS = static_function_ptr$(EXT) all: $(PROGS) static_function_ptr$(EXT): static_function_ptr_def.o static_function_ptr.o $(CC) -o $@ static_function_ptr_def.o static_function_ptr.o $(LDFLAGS) clean: rm -f $(PROGS) rm -f *.o rm -f *.stackdump clean_editor: rm -f *~ *# clean_all: clean clean_editor