mirror of
https://github.com/NishiOwO/fvwm1.git
synced 2025-04-21 00:34:40 +00:00
21 lines
278 B
Bash
Executable File
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
|
|
|
|
|