GITLAB

에프에이리눅스 / 1611_0007_prime_oven

Sign in
  • Sign in
  • Project
  • Files
  • Commits
  • Network
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
master
  • 1611_0007_prime_oven
  • app
  • superdaemon
  • Makefile
  • 8f39550ce   superdaemon 추가 Browse Code »
    김태훈
    8 years ago  
Makefile 241 Bytes
edit raw blame history permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
CC = arm-buildroot-linux-gnueabihf-gcc 
OBJS = main.o projectinc.o
TARGET = superdaemon

all: $(TARGET)

$(TARGET): $(OBJS)
	$(CC) -lm -o $@ $^
          
%.o:%.c
	@echo "Compiling $< ..."
	$(CC) -c $<
        
clean:
	rm $(OBJS) $(TARGET)