| 
									
										
										
										
											2019-12-13 04:29:58 +00:00
										 |  |  | AUTOMAKE_OPTIONS = nostdinc | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-11-15 04:50:40 +00:00
										 |  |  | CPPFLAGS_COMMON = \
 | 
					
						
							| 
									
										
										
										
											2019-12-13 04:29:58 +00:00
										 |  |  | 	-I$(abs_builddir) \
 | 
					
						
							|  |  |  | 	-I$(abs_builddir)/../lib  \
 | 
					
						
							|  |  |  | 	-I$(abs_srcdir) \
 | 
					
						
							|  |  |  | 	-I$(abs_srcdir)/../lib \
 | 
					
						
							| 
									
										
										
										
											2020-11-14 08:03:16 +00:00
										 |  |  | 	-I$(includedir) | 
					
						
							| 
									
										
										
										
											2020-11-15 04:50:40 +00:00
										 |  |  | CFLAGS_COMMON = | 
					
						
							|  |  |  | LDFLAGS_COMMON = -L$(abs_builddir)/../lib -L$(libdir) | 
					
						
							| 
									
										
										
										
											2020-11-16 12:54:50 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | ## specify the libhawk.la file instead of -lhawk. 
 | 
					
						
							|  |  |  | ##Use -l for third party libraries for automatic inclusion to DEPENDENCIES .
 | 
					
						
							|  |  |  | LIBADD_COMMON = ../lib/libhawk.la | 
					
						
							| 
									
										
										
										
											2019-12-13 04:29:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-05-16 00:41:36 +09:00
										 |  |  | bin_PROGRAMS = hawk | 
					
						
							| 
									
										
										
										
											2019-12-13 04:29:58 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | ##################################################
 | 
					
						
							|  |  |  | # hawk
 | 
					
						
							|  |  |  | ##################################################
 | 
					
						
							| 
									
										
										
										
											2025-06-04 12:51:01 +09:00
										 |  |  | hawk_SOURCES = cut.c hawk.c sed.c main.c main.h | 
					
						
							| 
									
										
										
										
											2020-11-15 04:50:40 +00:00
										 |  |  | hawk_CPPFLAGS = $(CPPFLAGS_COMMON) | 
					
						
							|  |  |  | hawk_CFLAGS = $(CFLAGS_COMMON) | 
					
						
							|  |  |  | hawk_LDFLAGS = $(LDFLAGS_COMMON) | 
					
						
							| 
									
										
										
										
											2020-11-15 08:46:30 +00:00
										 |  |  | ##
 | 
					
						
							|  |  |  | ## -lm is omitted from dependency_libs in libhawk.la because
 | 
					
						
							|  |  |  | ## libhawk contains some C++ code and postdeps_CXX contains -lm.
 | 
					
						
							|  |  |  | ##
 | 
					
						
							|  |  |  | ## Under the default libtool configuration, postdeps is empty.
 | 
					
						
							|  |  |  | ## Under the C++ tagged libtool configuration, postdeps is set to 
 | 
					
						
							|  |  |  | ## the value of postdeps_CXX.
 | 
					
						
							|  |  |  | ##
 | 
					
						
							|  |  |  | ## libtool doesn't include -lm in dependency_libs in libhawk.la 
 | 
					
						
							|  |  |  | ## because libtool --tag=CXX is used for mixed C++ code.
 | 
					
						
							|  |  |  | ##
 | 
					
						
							|  |  |  | ## specify -lm to a C only target to satisify dependency regardless
 | 
					
						
							|  |  |  | ## of different behavior depending on the libtool tag.
 | 
					
						
							|  |  |  | ##
 | 
					
						
							|  |  |  | hawk_LDADD = $(LIBADD_COMMON) $(LIBM) |