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