4 @$(CC) $(CFLAGS) -c $< -o $@
9 @$(CC) $(CFLAGS) -c $< -o $@
11 # the lame echo stuff down here is to prevent any compiler errors/warnings
12 # to cause an error code to get returned and thus stop the build
13 $(DEPFILE): $(SOURCES)
15 @(for each in $(SOURCES); do \
16 obj=`echo $$each | sed -e 's/\.[cS]/.o/'`; \
17 $(CC) -MM -MT "$(OBJDIR)/$$obj" $(CFLAGS) $$each >> $(DEPFILE) 2>/dev/null; \
19 echo "oo" >/dev/null )
22 @(for d in $(DIRS); do \
23 etags -o $(OBJDIR)/TAGS -a $$d/*.[ch]; \