18 lines
		
	
	
		
			748 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			748 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| bin_PROGRAMS = gauthenticator
 | |
| 
 | |
| gresource_file = $(top_srcdir)/data/gauthenticator.gresource.xml
 | |
| 
 | |
| BUILT_SOURCES = resources.c
 | |
| gauthenticator_SOURCES = $(BUILT_SOURCES) base32.vala otp.vala otp-row.vala main.vala gauth-app.vala gauth-window.vala
 | |
| gauthenticator_CPPFLAGS = $(GAUTHENTICATOR_CFLAGS)
 | |
| gauthenticator_VALAFLAGS = --pkg gtk+-3.0 --gresources $(gresource_file) --target-glib=2.38
 | |
| 
 | |
| gauthenticator_LDADD = $(GAUTHENTICATOR_LIBS) -lm
 | |
| 
 | |
| -include $(top_srcdir)/git.mk
 | |
| 
 | |
| resource_files = $(shell $(GLIB_COMPILE_RESOURCES) --generate-dependencies --sourcedir=$(top_srcdir)/data $(gresource_file))
 | |
| resources.c: $(gresource_file) $(resource_files)
 | |
| 	$(AM_V_GEN) $(GLIB_COMPILE_RESOURCES) --target=$@ --sourcedir=$(top_srcdir)/data --generate-source $<
 | |
| 
 |