Files
sics/dummy/make_gen
zolliker 6eeac106eb - cleaned up makefiles
SKIPPED:
	psi/tecs/pg_plus/make_gen
	psi/tecs/pg_plus/makefile
	psi/tecs/pg_plus/makefile_linux
	psi/tecs/pg_plus/makefile_macosx
2005-03-08 11:12:03 +00:00

21 lines
421 B
Plaintext

#-------------------------------------------------------------------------
# common part of the makefile for the Dummy specific parts of SICS
#
# Mark Koennecke, June 2003
#-------------------------------------------------------------------------
.SUFFIXES:
.SUFFIXES: .c .o .f
OBJ=dummy.o
all: libdummy.a
libdummy.a: $(OBJ)
rm -f libdummy.a
ar cr libdummy.a $(OBJ)
ranlib libdummy.a
clean:
rm -f *.a
rm -f *.o