blob: 246bc47fec1c30b58802303d76394a0c752529d0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#### host, target, and site specific Makefile frags come in here.
srcdir = .
all: wierd.o
wierd.o: ${srcdir}/${WIERDSTABS_S} ${srcdir}/wierd.def
cp ${srcdir}/${WIERDSTABS_S} tmp.c
$(CC) -I${srcdir} -E tmp.c >wierd.s
$(CC) -c wierd.s
clean mostlyclean:
-rm -f *.o ${PROGS} *~ core tmp.c wierd.s
distclean realclean: clean
-rm -f Makefile config.status
Makefile: $(srcdir)/Makefile.in $(host_makefile_frag) $(target_makefile_frag)
$(SHELL) ./config.status
|