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.

14 lines
157 B

  1. CC = gcc
  2. CFLAGS = -Wall
  3. OBJS = main.o
  4. all: maccalc
  5. %.o: %.c
  6. $(CC) $(CFLAGS) -c -o $@ $<
  7. maccalc: $(OBJS)
  8. $(CC) -o $@ $(OBJS)
  9. clean:
  10. rm -f maccalc *.o