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
20 vuotta sitten
21 vuotta sitten
20 vuotta sitten
21 vuotta sitten
21 vuotta sitten
21 vuotta sitten
123456789101112131415161718
  1. INCLUDES=-I.
  2. CFLAGS= -O3 -Wall $(INCLUDES)
  3. OBJS= main.o image.o dsp.o filter.o reg.o fcolor.o
  4. atpdec: $(OBJS)
  5. $(CC) -o $@ $(OBJS) -lm -lsndfile -lpng
  6. main.o: main.c version.h temppalette.h offsets.h
  7. dsp.o: dsp.c filtercoeff.h filter.h
  8. filter.o: filter.c filter.h
  9. image.o: image.c satcal.h offsets.h
  10. fcolor.o : fcolor.c offsets.h
  11. clean:
  12. rm -f *.o atpdec