Skip to content

Commit

Permalink
adding windows makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
Brazeau committed Jun 27, 2017
1 parent 770d5f9 commit 64ffb0a
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions Makefile.win
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
#Windows makefile
NAME=libmorphy_
CC=cl.exe
DBGF=/DDEBUG
CFLAGS= /c
SRC= \*.c
SRCDIR= .\src
OBJS=*.obj

all: $(OBJS)
lib.exe /OUT:libmorphy.lib $(OBJS)
del *.obj

$(OBJS): $(SRCDIR)$(SRC)
$(CC) $(CFLAGS) $(SRCDIR)$(SRC)

0 comments on commit 64ffb0a

Please sign in to comment.