Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 
 
 
 

19 rader
361 B

  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