mirror of
				https://projects.vdr-developer.org/git/vdr-plugin-streamdev.git
				synced 2023-10-10 17:16:51 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			35 lines
		
	
	
		
			597 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			35 lines
		
	
	
		
			597 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| #
 | |
| # Makefile for a Video Disk Recorder plugin
 | |
| #
 | |
| # $Id: Makefile,v 1.2 2010/07/19 13:49:28 schmirl Exp $
 | |
| 
 | |
| ### The object files (add further files here):
 | |
| 
 | |
| OBJS = tsremux.o ts2es.o ts2pes.o ts2ps.o extern.o
 | |
| 
 | |
| ### The main target:
 | |
| 
 | |
| .PHONY: clean
 | |
| remux.a: $(OBJS)
 | |
| 	ar -rcs remux.a $^
 | |
| 
 | |
| ### Implicit rules:
 | |
| 
 | |
| %.o: %.c 
 | |
| 	$(CXX) $(CXXFLAGS) -c $(DEFINES) $(INCLUDES) -o $@ $<
 | |
| 
 | |
| ### Dependencies:
 | |
| 
 | |
| MAKEDEP = $(CXX) -MM -MG
 | |
| DEPFILE = .dependencies
 | |
| 
 | |
| $(DEPFILE): Makefile
 | |
| 	@$(MAKEDEP) $(DEFINES) $(INCLUDES) $(OBJS:%.o=%.c) > $@
 | |
| 
 | |
| -include $(DEPFILE)
 | |
| 
 | |
| ### Targets:
 | |
| 
 | |
| clean:
 | |
| 	@-rm -f $(OBJS) $(DEPFILE) *.a core* *~
 |