Skip to content
Snippets Groups Projects

makefile & test.c update

Merged LEESANGKYEONG requested to merge HanJungwoo into master
2 files
+ 138
46
Compare changes
  • Side-by-side
  • Inline

Files

Makefile 0 → 100644
+ 15
0
 
SRCS := test.c fx_s1516_double.c fx_s1516_longlong.c fx_s1615_double.c fx_s1615_longlong.c fx_s2308_double.c fx_s2308_longlong.c fx_s3132_double.c fx_s3132_longlong.c fx_s3231_double.c fx_s3231_longlong.c fx_s4716_double.c fx_s4716_longlong.c
 
OBJS := $(SRCS:.c=.o)
 
CC := gcc
 
CFLAGS := -c -Wall
 
 
ajou_fx : $(OBJS)
 
$(CC) -o $@ $^ -lm
 
 
clean :
 
-rm $(OBJS)
 
rm ajou_fx
 
 
dep :
 
gccmakedep $(SRCS)
 
Loading