1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-07-26 16:45:12 -04:00

Add forgotten cache Makefile

Didn't notice it's missing because we still have it in .gitignore.
This commit is contained in:
Petr Baudis 2005-09-15 22:35:03 +02:00
parent 0cc70f57a1
commit 4e467d6129

11
src/cache/Makefile vendored Normal file
View File

@ -0,0 +1,11 @@
-include ../../Makefile.config
OBJS = cache.o dialogs.o
all: libcache.a
libcache.a: $(OBJS)
clean:
rm -f *.o *.a
-include ../../Makefile.lib