Several Makefiles: Add .PHONY definitions to prevent 'clean up to date' message weirdness.

This commit is contained in:
Gregory Nutt
2016-05-10 15:44:06 -06:00
parent 88b79d305f
commit e523c93391
11 changed files with 29 additions and 17 deletions
+2 -1
View File
@@ -1,7 +1,7 @@
############################################################################
# nxflat/Makefile
#
# Copyright (C) 2007-2009, 2012-2015 Gregory Nutt. All rights reserved.
# Copyright (C) 2007-2009, 2012-2016 Gregory Nutt. All rights reserved.
# Author: Gregory Nutt <gnutt@nuttx.org>
#
# Redistribution and use in source and binary forms, with or without
@@ -80,6 +80,7 @@ BINFMT_OBJS = $(BINFMT_AOBJS) $(BINFMT_COBJS)
BIN = libbinfmt$(LIBEXT)
all: $(BIN)
.PHONY: depend clean distclean
$(BINFMT_AOBJS): %$(OBJEXT): %.S
$(call ASSEMBLE, $<, $@)