blob: f72c18928f0ad460e5fe03c1e372ae4b30569ce3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# Process this file with GNU make
TOP_DIR = ..
UNPACKED = $(patsubst %.in, %, $(notdir \
$(shell grep ^source $(TOP_DIR)/manifest.txt)))
DIST_FILES = Makefile $(UNPACKED)
include $(TOP_DIR)/include.mak
all: $(UNPACKED)
$(UNPACKED):
$(MAKE) -C $(TOP_DIR)/source
rm -f eskd*.{sty,def,cls}
cp -p $(addprefix $(TOP_DIR)/source/, $(UNPACKED)) .
|