Make hed_expr_len and hed_expr_flags inline
[hed.git] / src / Makefile
blob5184828012d5e9939f643991ba3646b5c00abf7a
1 export
2 unexport INCLUDES
3 INCLUDES=-I. -I..
6 OBJS=main.o
7 SUBDIRS=config term ui
8 LOCALLIBS=config/config.a term/term.a ui/ui.a ../libhed/libhed.a
10 all: all-recursive hed
12 # all-recursive here will make sure link is not called too early
13 # in case of parallel make
14 hed: all-recursive $(OBJS) $(LOCALLIBS)
15 $(call cmd,link)
18 clean: clean-recursive
19 rm -rf hed *.o
21 -include ../Makefile.lib