Dongjin Kim | f316f52 | 2022-01-18 10:10:24 +0000 | [diff] [blame] | 1 | ACLOCAL_AMFLAGS = -I m4 ${ACLOCAL_FLAGS} |
| 2 | |
| 3 | COMMON_CFLAGS = $(EXTRA_CFLAGS) $(LIBWIRINGPI_CFLAGS) |
| 4 | LIBS = $(LIBWIRINGPI_LIBS) |
| 5 | |
Steve Jeong | 8a77459 | 2023-06-01 18:36:00 +0900 | [diff] [blame] | 6 | bin_PROGRAMS = blink blink12 blink12drcs blink8 clock delayTest ds1302 isr isr-osc i2c-lcd lcd lcd-adafruit max31855 nes okLed pwm rht03 serialRead serialTest softPwm softTone speed wfi |
Dongjin Kim | f316f52 | 2022-01-18 10:10:24 +0000 | [diff] [blame] | 7 | |
| 8 | blink_SOURCES = blink.c |
| 9 | blink_CFLAGS = $(COMMON_CFLAGS) |
| 10 | |
| 11 | blink12_SOURCES = blink12.c |
| 12 | blink12_CFLAGS = $(COMMON_CFLAGS) |
| 13 | |
| 14 | blink12drcs_SOURCES = blink12drcs.c |
| 15 | blink12drcs_CFLAGS = $(COMMON_CFLAGS) |
| 16 | |
| 17 | blink8_SOURCES = blink8.c |
| 18 | blink8_CFLAGS = $(COMMON_CFLAGS) |
| 19 | |
| 20 | clock_SOURCES = clock.c |
| 21 | clock_CFLAGS = $(COMMON_CFLAGS) |
| 22 | clock_LDADD = -lm |
| 23 | |
| 24 | delayTest_SOURCES = delayTest.c |
| 25 | delayTest_CFLAGS = $(COMMON_CFLAGS) |
| 26 | |
| 27 | ds1302_SOURCES = ds1302.c |
| 28 | ds1302_CFLAGS = $(COMMON_CFLAGS) |
| 29 | |
| 30 | isr_SOURCES = isr.c |
| 31 | isr_CFLAGS = $(COMMON_CFLAGS) |
| 32 | |
| 33 | isr_osc_SOURCES = isr-osc.c |
| 34 | isr_osc_CFLAGS = $(COMMON_CFLAGS) |
| 35 | |
Steve Jeong | 8a77459 | 2023-06-01 18:36:00 +0900 | [diff] [blame] | 36 | i2c_lcd_SOURCES = i2c-lcd.c |
| 37 | i2c_lcd_CFLAGS = $(COMMON_CFLAGS) |
| 38 | |
Dongjin Kim | f316f52 | 2022-01-18 10:10:24 +0000 | [diff] [blame] | 39 | lcd_SOURCES = lcd.c |
| 40 | lcd_CFLAGS = $(COMMON_CFLAGS) |
| 41 | |
| 42 | lcd_adafruit_SOURCES = lcd-adafruit.c |
| 43 | lcd_adafruit_CFLAGS = $(COMMON_CFLAGS) |
| 44 | |
| 45 | max31855_SOURCES = max31855.c |
| 46 | max31855_CFLAGS = $(COMMON_CFLAGS) |
| 47 | |
| 48 | nes_SOURCES = nes.c |
| 49 | nes_CFLAGS = $(COMMON_CFLAGS) |
| 50 | |
| 51 | okLed_SOURCES = okLed.c |
| 52 | okLed_CFLAGS = $(COMMON_CFLAGS) |
| 53 | |
| 54 | pwm_SOURCES = pwm.c |
| 55 | pwm_CFLAGS = $(COMMON_CFLAGS) |
| 56 | |
| 57 | rht03_SOURCES = rht03.c |
| 58 | rht03_CFLAGS = $(COMMON_CFLAGS) |
| 59 | |
| 60 | serialRead_SOURCES = serialRead.c |
| 61 | serialRead_CFLAGS = $(COMMON_CFLAGS) |
| 62 | |
| 63 | serialTest_SOURCES = serialTest.c |
| 64 | serialTest_CFLAGS = $(COMMON_CFLAGS) |
| 65 | |
| 66 | softPwm_SOURCES = softPwm.c |
| 67 | softPwm_CFLAGS = $(COMMON_CFLAGS) |
| 68 | |
| 69 | softTone_SOURCES = softTone.c |
| 70 | softTone_CFLAGS = $(COMMON_CFLAGS) |
| 71 | |
| 72 | speed_SOURCES = speed.c |
| 73 | speed_CFLAGS = $(COMMON_CFLAGS) |
| 74 | |
| 75 | wfi_SOURCES = wfi.c |
| 76 | wfi_CFLAGS = $(COMMON_CFLAGS) |
| 77 | |
| 78 | SUBDIRS = Gertboard PiFace PiGlow q2w scrollPhat |