mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-23 14:44:28 +00:00
7 lines
102 B
Makefile
7 lines
102 B
Makefile
![]() |
OBJS=cygloader.o
|
||
|
all: $(OBJS)
|
||
|
$(OBJS) : %.o: %.c
|
||
|
$(CC) $< -o asterisk.exe
|
||
|
clean:
|
||
|
rm -f asterisk.exe
|