fvwm1/MakeMakefiles
2019-08-26 23:33:33 +01:00

21 lines
278 B
Bash
Executable File

#!/bin/sh
#
# Replaces the commands xmkmf; make Makefiles for my broken setup.
#
echo Making top-level Makefile
xmkmf
echo done
TOPDIR=`pwd`
echo TOPDIR is $TOPDIR
for i in libs fvwm xpmroot modules/*
do
echo Making Makefile in $i
cd $i ; xmkmf ; cd $TOPDIR
echo done
done