Makefile
changeset 64 993b97c4ad2d
parent 62 b7061c0e239f
child 66 2b4f786d9073
equal deleted inserted replaced
63:5a82f89d607e 64:993b97c4ad2d
   288 	@$(CC) -std=c99 -o $@ $<
   288 	@$(CC) -std=c99 -o $@ $<
   289 
   289 
   290 .PHONY: clean uninstall
   290 .PHONY: clean uninstall
   291 
   291 
   292 clean:
   292 clean:
   293 	rm -f *.o *~
   293 	find -name '*~' -exec rm -f {} \;
       
   294 	find -name '*.[oa]' -exec rm -f {} \;
   294 	rm -f $(TARGET)
   295 	rm -f $(TARGET)
   295 
   296 
       
   297 beauty:
       
   298 	find -name '*.[ch]' -exec indent {} \;
       
   299 	find -name '*.[ch]' -exec eraser {} \;
       
   300 	@make clean