X-Git-Url: https://the.earth.li/gitweb/?p=riso-kagaku-clone.git;a=blobdiff_plain;f=Makefile;h=b2fa31efc33131724816904d5b05bc2477ea9987;hp=412d0900d08ab08ac5486e70e1d707c9323f6c2a;hb=014a1e9f44229545cc5382f5b2e8e5ae1853fd0d;hpb=edab807ad8aa75973a388ff2fe72595702b64b4a diff --git a/Makefile b/Makefile index 412d090..b2fa31e 100644 --- a/Makefile +++ b/Makefile @@ -1,11 +1,11 @@ DEVICE = attiny85 F_CPU = 16500000 -CFLAGS = -Iusbdrv -I. +CFLAGS = -Iusbdrv -Ilibs-device -I. AVRCC = avr-gcc -Wall -Os -DF_CPU=$(F_CPU) $(CFLAGS) -mmcu=$(DEVICE) OBJECTS = usbdrv/usbdrv.o usbdrv/usbdrvasm.o usbdrv/oddebug.o \ - libs-device/osccal.o main.o + libs-device/osccalASM.o main.o .c.o: $(AVRCC) -c $< -o $@