You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
525 B
Makefile
28 lines
525 B
Makefile
2 years ago
|
#
|
||
|
# Nmake file for libmseed examples - MS Visual C/C++
|
||
|
# Use 'nmake -f Makefile.win'
|
||
|
|
||
|
INCS = /I..
|
||
|
LIBS = ../libmseed.lib
|
||
|
OPTS = /O2 /D_CRT_SECURE_NO_WARNINGS
|
||
|
|
||
|
SRCS = lm_pack.c \
|
||
|
lm_pack_rollingbuffer.c \
|
||
|
lm_parse.c \
|
||
|
lm_read_buffer.c \
|
||
|
lm_read_recordlist.c \
|
||
|
lm_read_selection.c \
|
||
|
lm_sids.c \
|
||
|
lm_timestr.c \
|
||
|
mseedview.c
|
||
|
|
||
|
BINS = $(SRCS:.c=.exe)
|
||
|
|
||
|
all: $(BINS)
|
||
|
|
||
|
.c.exe:
|
||
|
$(CC) /nologo $(CFLAGS) $(INCS) $(OPTS) $(LIBS) $<
|
||
|
|
||
|
# Clean-up directives
|
||
|
clean:
|
||
|
-del *.obj *.exe *% *~
|