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.

26 lines
295B

  1. CC=gcc
  2. CPP=g++
  3. TARGET=test_zenity
  4. ALL_OBJ= \
  5. osdialog_zenity.o \
  6. test_zenity.o
  7. CPPFLAGS= -Wall
  8. CFLAGS= -Wall
  9. .cpp.o:
  10. $(CPP) $(CPPFLAGS) -c $< -o $@
  11. .c.o:
  12. $(CC) $(CFLAGS) -c $< -o $@
  13. test_zenity: $(ALL_OBJ)
  14. $(CPP) -o $(TARGET) $(ALL_OBJ)
  15. .PHONY:
  16. clean:
  17. rm -f $(TARGET) $(ALL_OBJ)