Browse Source

Fix makefile

git-svn-id: https://bucket.mit.edu/svn/nilm/acquisition/ethstream@10461 ddd99763-3ecb-0310-9145-efcb8ce7c51f
tags/ethstream-1.3
jim 11 years ago
parent
commit
0f71b79b6f
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      Makefile

+ 2
- 2
Makefile View File

@@ -15,7 +15,7 @@

CFLAGS += -Wall -g #-pg
LDFLAGS += #-pg
LDLIBS += -lm #CHANGED location from LDFLAGS for proper linking using gcc
LDLIBS += -lm

PREFIX = /usr/local
MANPATH = ${PREFIX}/man/man1/
@@ -51,7 +51,7 @@ obj-common = opt.o ue9.o ue9error.o netutil.o debug.o nerdjack.o
obj-ethstream = ethstream.o $(obj-common)

ethstream: $(obj-ethstream)
$(CC) -o $@ $^ $(LDFLAGS)
$(CC) $(LDFLAGS) -o $@ $^ $(LDLIBS)

ethstream.exe: $(obj-ethstream:.o=.obj) compat-win32.obj



Loading…
Cancel
Save