Skip to content
Snippets Groups Projects
Commit e4d86a57 authored by Måns Rullgård's avatar Måns Rullgård
Browse files

add "checkheaders" target

Originally committed as revision 9346 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 699b3f99
No related branches found
No related tags found
No related merge requests found
......@@ -42,12 +42,18 @@ $(SLIBNAME_WITH_MAJOR): $(SHARED_OBJS)
%: %.o $(LIB)
$(CC) $(LDFLAGS) -o $@ $^ $(EXTRALIBS)
%.ho: %.h
$(CC) $(CFLAGS) $(LIBOBJFLAGS) -Wno-unused -c -o $@ -x c $<
ALLHEADERS = $(subst $(VPATH)/,,$(wildcard $(VPATH)/*.h))
checkheaders: $(filter-out %_template.ho,$(ALLHEADERS:.h=.ho))
depend dep: $(SRCS)
$(CC) -MM $(CFLAGS) $^ 1>.depend
clean::
rm -f *.o *~ *.a *.lib *.so *.so.* *.dylib *.dll \
*.def *.dll.a *.exp
*.def *.dll.a *.exp *.ho
distclean: clean
rm -f .depend
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment