Files
metasploit-gs/external/source/ipwn/Makefile.native
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
300 B
Makefile
Raw Normal View History

2007-10-20 18:27:09 +00:00
SRC = cmd_base.c cmd_expl.c cmd_fd.c cmd_fs.c cmd_misc.c \
2007-10-21 02:54:07 +00:00
cmd_privs.c cmd_proc.c cmd_sys.c cmd_net.c \
main.c misc.c
2007-10-20 18:27:09 +00:00
CFLAGS=-Wall -s
BIN = $(SRC:.c=.o)
all: clean ${BIN} ipwn
%.o: %.c
$(CC) -c $(CFLAGS) $*.c
ipwn:
$(CC) $(CFLAGS) $(LDFLAGS) -o ipwn *.o
clean:
rm -f ipwn *.o