Skip to content

Commit

Permalink
Update src/Makefile.win, add base Makefile.win, mark Makefile.wat as …
Browse files Browse the repository at this point in the history
…deprecated
  • Loading branch information
chad-iris committed Apr 4, 2017
1 parent 8a62a19 commit dff735d
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 9 deletions.
2 changes: 2 additions & 0 deletions Makefile.wat
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
#
# THIS FILE IS DEPRECATED AND WILL BE REMOVED IN A FUTURE RELEASE
#
# Wmake File for seisan2mseed - For Watcom's wmake
# Use 'wmake -f Makefile.wat'

Expand Down
2 changes: 2 additions & 0 deletions src/Makefile.wat
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
#
# THIS FILE IS DEPRECATED AND WILL BE REMOVED IN A FUTURE RELEASE
#
# Wmake File - for Watcom's wmake
# Use 'wmake -f Makefile.wat'

Expand Down
10 changes: 2 additions & 8 deletions src/Makefile.win
Original file line number Diff line number Diff line change
@@ -1,28 +1,22 @@
#
# Nmake file - Windows version
# Use 'nmake -f Makefile.win'
#
# THIS HAS NEVER BEEN TESTED
# Some modification might be required.

NODEBUG=1

!include <ntwin32.mak>

INCS = /I..\libmseed
OPTS = -D_CRT_SECURE_NO_WARNINGS
LIBS = ..\libmseed\libmseed.lib

BIN = ..\ascii2mseed.exe

cflags = $(cflags) -DWIN32

all: $(BIN)

$(BIN): ascii2mseed.obj
link.exe /nologo /out:$(BIN) $(LIBS) ascii2mseed.obj

.c.obj:
$(cc) /nologo $(cflags) $(cdebug) $(cvarsmt) $(tflags) $(INCS) $<
$(CC) /nologo $(CFLAGS) $(INCS) $(OPTS) /c $<

# Clean-up directives
clean:
Expand Down
2 changes: 1 addition & 1 deletion src/ascii2mseed.c
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

#include <libmseed.h>

#define VERSION "1.4"
#define VERSION "1.5dev"
#define PACKAGE "ascii2mseed"

struct listnode {
Expand Down

0 comments on commit dff735d

Please sign in to comment.