19 lines
466 B
Makefile
19 lines
466 B
Makefile
#### 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
|