/
githubmirror
/
ipxe
Обзор
Документация
Войти
/
githubmirror
/
ipxe
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
v1.0.0
src/util/Makefile
22 строки
525 B
Dan Lynch
- first check-in for mucurses_test.c
27 июн 2006, 21:31
27 июн 2006, 21:31
2b15084
Код
Авторство
О чём код?
BLIB = ../bin/blib.a CFLAGS = -Os all : hijack prototester mucurses_test hijack : hijack.c $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -Wall -lpcap -o $@ $< prototester.o : prototester.c $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -Wall -o $@ -c $< -idirafter ../include prototester : prototester.o $(BLIB) $(CC) -o $@ $< -lc $(BLIB) mucurses_test.o : mucurses_test.c $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -Wall -o $@ -c $< mucurses_test : mucurses_test.o $(BLIB) $(CC) -o $@ $< -lc $(BLIB) clean : rm -f hijack prototester mucurses_test *.o