diff options
| author | Miguel <m.i@gmx.at> | 2018-09-27 14:30:33 +0200 |
|---|---|---|
| committer | Miguel <m.i@gmx.at> | 2018-09-27 14:30:33 +0200 |
| commit | 8e005d0f13767db538e3d939188d73370db9042d (patch) | |
| tree | a9b320d6b3da7137348019de70846bdf8aa03246 /Makefile.common | |
| parent | 05d86ed530c05ba3f8648ffd7e67f4a593ae58d8 (diff) | |
added linux tap support for fool's network stack
Diffstat (limited to 'Makefile.common')
| -rw-r--r-- | Makefile.common | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Makefile.common b/Makefile.common index 2dd538c..d4e45c3 100644 --- a/Makefile.common +++ b/Makefile.common @@ -1,10 +1,10 @@ ### explicit rules ### %.o: %.asm - @echo "Assembling (nasm) $@..."; nasm -f elf $*.asm -o $@ -f elf -F dwarf -g -#%.o: %.s -# i686-elf-as $*.s -o $@ + @echo "ASM $@ ..."; nasm -f elf $*.asm -o $@ -f elf -F dwarf -g %.o: %.c - $(CC) -c $(CFLAGS) $*.c -o $*.o - $(CC) -MM -MT $*.o $(CFLAGS) $*.c > $*.d + @echo "CC $@ ..."; $(CC) -c $(CFLAGS) $*.c -o $*.o + +%.d: %.c + @echo "DEP $@ ..."; $(CC) -MM -MT $*.o $(CFLAGS) $*.c > $*.d |
