1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
|
#
# Makefile - SaVi maps directory. Run top-level Makefile instead.
#
# $Id: Makefile 8 2019-01-24 04:33:00Z lloydwood $
SHELL = /bin/sh
RM = /bin/rm -f
OTHER_SRCS = world.cyl.pbm world1024.cyl.pbm \
world.unp.pbm world1024.unp.pbm \
world-mask.unp.pbm world-mask1024.unp.pbm \
world.sph.pbm world1024.sph.pbm \
world90W.sph.pbm world90W1024.sph.pbm \
world.sinu.pbm world1024.sinu.pbm \
world90W.sinu.pbm world90W1024.sinu.pbm \
savi-logo.gif
all:
clean:
$(RM) *~ $(CLEAN_FILES)
tarfilelist::
@srcs="Makefile $(SRCS) $(OTHER_SRCS)" ; \
for i in $$srcs ; do \
echo "$(CURRENT_DIR)/$$i" >> $(TOP)/fileslist ; \
done
|