Changes to many Makefiles. For kernel buil object containing main cannot go into library because of name collisions. The object file must be handled as a special case in every Makefile

This commit is contained in:
Gregory Nutt 2014-09-07 08:45:38 -06:00
parent 4f14d3b8c4
commit bbded7e15f
2 changed files with 12 additions and 11 deletions

View File

@ -44,7 +44,8 @@ endif
# TIFF Screenshot utility
ASRCS =
CSRCS = screenshot_main.c
CSRCS =
MAINSRC = screenshot_main.c
AOBJS = $(ASRCS:.S=$(OBJEXT))
COBJS = $(CSRCS:.c=$(OBJEXT))