You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
244 B
15 lines
244 B
# MW. Include libs for Spice
|
|
CFLAGS= -O2 -s
|
|
LDFLAGS= -s
|
|
|
|
OBJS= inc_main.o inc_inp.o inc_LSD.o
|
|
HDRS= datadef.h
|
|
SRCC= inc_main.c inc_inp.c inc_LSD.c
|
|
|
|
mslib: $(OBJS)
|
|
$(CC) $(LDFLAGS) -o $@ $(OBJS)
|
|
|
|
clean:
|
|
$(RM) $(OBJS) mslib
|
|
|
|
$(OBJS): $(HDRS)
|