소스 검색

small Makefile bug

Andrei Pelinescu-Onciul 24 년 전
부모
커밋
828920bbd4
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      Makefile

+ 1 - 1
Makefile

@@ -4,7 +4,7 @@
 #
 
 sources= $(wildcard *.c)
-objs= $((sources:.c=.o)
+objs= $(sources:.c=.o)
 depends= $(sources:.c=.d)
 
 NAME=sip_router