forked from mirrors/tftp-hpa-google
Initial revision
This commit is contained in:
commit
09f975fa4c
18 changed files with 4696 additions and 0 deletions
22
MRULES
Normal file
22
MRULES
Normal file
|
@ -0,0 +1,22 @@
|
|||
# Standard compilation rules (don't use make builtins)
|
||||
|
||||
.SUFFIXES: .c .cc .o .s .S .i
|
||||
|
||||
.c.o:
|
||||
$(CC) $(CFLAGS) -c $<
|
||||
|
||||
.c.s:
|
||||
$(CC) $(CFLAGS) -S -o $@ $<
|
||||
|
||||
.c.i:
|
||||
$(CC) $(CFLAGS) -E -o $@ $<
|
||||
|
||||
.cc.o:
|
||||
$(CXX) $(CXXFLAGS) -c $<
|
||||
|
||||
.cc.s:
|
||||
$(CXX) $(CXXFLAGS) -S -o $@ $<
|
||||
|
||||
.cc.i:
|
||||
$(CXX) $(CXXFLAGS) -E -o $@ $<
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue