experimental tool
This commit is contained in:
21
utils/mnetftn/Makefile
Normal file
21
utils/mnetftn/Makefile
Normal file
@@ -0,0 +1,21 @@
|
||||
CC=cc
|
||||
CFLAGS=-I/usr/local/include -I../../deps/
|
||||
DEPS = mnettoftn.c
|
||||
JAMLIB = ../../deps/jamlib/jamlib.a
|
||||
OBJ = mnettoftn.o
|
||||
|
||||
all: mnettoftn
|
||||
|
||||
%.o: %.c $(DEPS)
|
||||
$(CC) -c -o $@ $< $(CFLAGS)
|
||||
|
||||
$(JAMLIB):
|
||||
cd ../../deps/jamlib && make -f Makefile.linux
|
||||
|
||||
mnettoftn: $(OBJ) $(JAMLIB)
|
||||
$(CC) -o mnettoftn $^ $(CFLAGS) -L/usr/local/lib
|
||||
|
||||
.PHONY: clean
|
||||
|
||||
clean:
|
||||
rm -f $(OBJ) mnettoftn
|
Reference in New Issue
Block a user