mirror of
https://github.com/rkd77/elinks.git
synced 2024-12-04 14:46:47 -05:00
06ea255a22
The root makefile is converted as well as some leaf Makefiles. This also brings in the required infrastructure and adjusts configure.in appropriately. I converted only makefiles containing no configurable stuff, since that'll require more consideration yet.
12 lines
155 B
Makefile
12 lines
155 B
Makefile
-include ../../Makefile.config
|
|
|
|
OBJS = globhist.o dialogs.o
|
|
|
|
all: libglobhist.a
|
|
libglobhist.a: $(OBJS)
|
|
|
|
clean:
|
|
rm -f *.o *.a
|
|
|
|
-include ../../Makefile.lib
|