You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
361 B
Makefile
17 lines
361 B
Makefile
2 years ago
|
## AUTOMAKE_OPTIONS = foreign
|
||
|
|
||
|
AM_CPPFLAGS = \
|
||
|
-DPACKAGE_LOCALE_DIR=\""$(localedir)"\" \
|
||
|
-DPACKAGE_SRC_DIR=\""$(srcdir)"\" \
|
||
|
-DPACKAGE_DATA_DIR=\""$(pkgdatadir)"\" \
|
||
|
-DCNFPATH=\""$(prefix)/etc"\" \
|
||
|
-I../include
|
||
|
|
||
|
AM_CFLAGS = -Wall -g
|
||
|
|
||
|
bin_PROGRAMS = dsbfcntl
|
||
|
|
||
|
dsbfcntl_SOURCES = fcntl.c
|
||
|
dsbfcntl_LDADD = $(LIBTDATA_LIBS) $(LIBSEXPR_LIBS) -lblkid -lpthread
|
||
|
|