File: MakeMakefiles

package info (click to toggle)
fvwm2 2.0.46-BETA-3
  • links: PTS
  • area: main
  • in suites: hamm
  • size: 5,172 kB
  • ctags: 5,559
  • sloc: ansic: 52,902; cpp: 2,465; perl: 2,275; python: 779; sh: 604; makefile: 221
file content (20 lines) | stat: -rwxr-xr-x 328 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/bin/sh
#
# Replaces the commands xmkmf; make Makefiles for my broken setup.
#

FVWMSRCDIR=`pwd`
echo FVWMSRCDIR is $FVWMSRCDIR

echo Making top-level Makefile
xmkmf
echo done

for i in libs fvwm xpmroot utils sample.fvwmrc modules/*
do
echo Making Makefile in $i
cd $i ; xmkmf ; make depend ; cd $FVWMSRCDIR
echo done
done