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.

21 vuotta sitten
21 vuotta sitten
20 vuotta sitten
21 vuotta sitten
21 vuotta sitten
20 vuotta sitten
21 vuotta sitten
12345678910111213141516171819
  1. INCLUDES=-I.
  2. CFLAGS= -O3 $(INCLUDES)
  3. OBJS= main.o image.o dsp.o filter.o reg.o fcolor.o dres.o
  4. atpdec: $(OBJS)
  5. $(CC) -o $@ $(OBJS) -lm -lsndfile -lpng
  6. main.o: main.c version.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. fcolor.o : fcolor.c
  11. dres.o : dres.c
  12. clean:
  13. rm -f *.o atpdec