first commit
This commit is contained in:
15
installmbr/Makefile
Normal file
15
installmbr/Makefile
Normal file
@@ -0,0 +1,15 @@
|
||||
PROG=installmbr
|
||||
SRCS=$(wildcard *.c)
|
||||
OBJS=$(SRCS:.c=.o)
|
||||
|
||||
CFLAGS = -g
|
||||
CPPFLAGS = -I $(IDIR)
|
||||
|
||||
${PROG}: $(OBJS)
|
||||
@rm -f $(PROG)
|
||||
$(CC) $(CFLAGS) -o $(BDIR)/$(PROG) $^
|
||||
|
||||
$(OBJS): ../dat.h
|
||||
|
||||
clean:
|
||||
rm -rf $(PROG) $(OBJS)
|
||||
Reference in New Issue
Block a user