You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

18 rivejä
274 B

  1. INCLUDES=-I.
  2. CFLAGS= -O4 $(INCLUDES)
  3. OBJS= main.o image.o dsp.o filter.o
  4. atpdec: $(OBJS)
  5. $(CC) -o $@ $(OBJS) -lm -lsndfile -lpng
  6. main.o: main.c cmap.h
  7. dsp.o: dsp.c filtercoeff.h filter.h
  8. filter.o: filter.c filter.h
  9. image.o: image.c satcal.h
  10. clean:
  11. rm -f *.o atpdec