
SKIPPED: psi/tecs/pg_plus/make_gen psi/tecs/pg_plus/makefile psi/tecs/pg_plus/makefile_linux psi/tecs/pg_plus/makefile_macosx
21 lines
421 B
Plaintext
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
|