mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-21 18:38:08 +01:00
c454135376
Use `makefile-gmake-mode' instead of `makefile-mode' because the former also highlights ifdef et al. while the latter does not. "./Makefile.global" and one "Makefile.local" failed to specify any major mode at all but doing so is necessary because Emacs does not automatically figure out that these are Makefiles (of any flavor).
14 lines
435 B
Text
14 lines
435 B
Text
# -*- makefile-gmake -*-
|
|
|
|
dir := parse-time-string
|
|
extra_cflags += -I$(srcdir)/$(dir)
|
|
|
|
libparse-time-string_c_srcs := $(dir)/parse-time-string.c
|
|
|
|
libparse-time-string_modules := $(libparse-time-string_c_srcs:.c=.o)
|
|
|
|
$(dir)/libparse-time-string.a: $(libparse-time-string_modules)
|
|
$(call quiet,AR) rcs $@ $^
|
|
|
|
SRCS := $(SRCS) $(libparse-time-string_c_srcs)
|
|
CLEAN := $(CLEAN) $(libparse-time-string_modules) $(dir)/libparse-time-string.a
|